/*
Theme Name: عنوان المطابخ
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: قالب احترافي مخصص لعرض خدمات المطابخ والأعمال المنفذة
Version: 1.0.0
Text Domain: matabekh
*/


/* Reset & Base Styles */

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

:root {
    --primary-color: #c49b63;
    --secondary-color: #2c2c2c;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --gold: #d4af37;
    --dark: #1a1a1a;
}

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');
html {
    direction: rtl;
}

* {
    font-family: 'Cairo', 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
}

body {
    font-family: 'Cairo', 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga" 1, "kern" 1;
}

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


/* Header Styles */

.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}


/* Overlay for mobile menu */

.main-nav.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
    height: 60px;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    transition: color 0.3s ease;
}

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

.logo:hover .logo-text {
    color: var(--gold);
}


/* Mobile Menu Toggle */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.main-nav a:hover {
    color: var(--primary-color);
}


/* Hero Section */

.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/2724749/pexels-photo-2724749.jpeg?auto=compress&cs=tinysrgb&w=1920&h=600&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s;
}

.hero-phone-number-wrapper {
    display: inline-block;
    width: 100%;
    max-width: fit-content;
    margin: 0 auto 30px;
    animation: fadeInUp 1.2s;
}

.hero-phone-number {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    display: flex;
    direction: ltr;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    letter-spacing: 0.2em;
    white-space: nowrap;
    direction: ltr;
    text-align: left;
    unicode-bidi: bidi-override;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.4s;
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #b0884f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 155, 99, 0.4);
}

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

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


/* Statistics Section */

.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(196, 155, 99, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(196, 155, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 155, 99, 0.2);
    border-radius: 20px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 155, 99, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(196, 155, 99, 0.2);
}

.stat-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(196, 155, 99, 0.3);
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(196, 155, 99, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item:hover .stat-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(196, 155, 99, 0.5);
}

.stat-item:hover .stat-icon-bg {
    opacity: 1;
}

.stat-number-wrapper {
    margin-bottom: 15px;
    position: relative;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
    text-shadow: 0 0 30px rgba(196, 155, 99, 0.3);
    transition: all 0.3s;
}

.stat-suffix {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    transition: color 0.3s;
}

.stat-item:hover .stat-label {
    color: var(--white);
}

.stat-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: width 0.4s;
}

.stat-item:hover .stat-line {
    width: 80px;
}


/* About Section */

.about-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

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

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

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.8s ease;
}

/* Scroll animation for about image */
.scroll-animate-image {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-animate-image.hidden {
    opacity: 0;
    transform: translateX(-30px);
}

.scroll-animate-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-image.visible img {
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll animation for about text */
.scroll-animate-text {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-animate-text.hidden {
    opacity: 0;
    transform: translateX(30px);
}

.scroll-animate-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #666;
}


/* Services Section */

.services-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    position: relative;
}

.services-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 850px;
    margin: 0 auto 50px;
    padding: 0 20px;
    font-weight: 400;
}

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

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.service-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    direction: rtl;
}

.service-btn::before {
    content: '←';
    font-size: 18px;
    line-height: 1;
}

.service-btn:hover {
    gap: 12px;
}

.view-all-services {
    text-align: center;
    margin-top: 40px;
}


/* Portfolio Section */

.portfolio-section {
    padding: 100px 0 120px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
}

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

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

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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


/* Video Badge */

.portfolio-video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(196, 155, 99, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.portfolio-video-badge svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    margin-right: 2px;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(196, 155, 99, 0.5);
    }
}


/* Portfolio Overlay */

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 0;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

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

.portfolio-overlay h4 {
    width: 100%;
    padding: 30px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

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

.portfolio-overlay-content {
    width: 100%;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

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

.portfolio-category {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(196, 155, 99, 0.2);
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.portfolio-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.portfolio-action-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.portfolio-action-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 99, 0.4);
}

.portfolio-video-btn:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.view-all-portfolio {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: 0;
}


/* Portfolio Archive Page */

.portfolio-page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c3e50 100%);
    text-align: center;
    overflow: hidden;
}

.portfolio-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.portfolio-page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-page-header .page-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.portfolio-page-header .page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.page-header-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: fadeInUp 1.2s ease-out;
}

.portfolio-archive-content {
    padding: 80px 0;
    background: var(--light-bg);
}


/* Portfolio Filters */

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding: 30px 0;
}

.portfolio-filter-btn {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 99, 0.3);
}

.portfolio-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 155, 99, 0.4);
}


/* Portfolio Grid - Enhanced */

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


/* Portfolio Lightbox */

.portfolio-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.portfolio-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-lightbox-media {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.portfolio-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.portfolio-lightbox-video {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.portfolio-lightbox-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.portfolio-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.portfolio-lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(196, 155, 99, 0.5);
}


/* Why Choose Section */

.why-choose-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: 0;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(196, 155, 99, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(196, 155, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.why-choose-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding: 0 20px;
}

.why-choose-subtitle::before,
.why-choose-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--primary-color);
}

.why-choose-subtitle::before {
    right: 100%;
}

.why-choose-subtitle::after {
    left: 100%;
}

.why-choose-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-highlight {
    color: var(--white);
    display: block;
    animation: fadeInUp 0.8s ease;
}

.title-brand {
    color: var(--primary-color);
    display: block;
    font-size: 64px;
    line-height: 1.3;
    padding: 10px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(196, 155, 99, 0.3);
    animation: fadeInUp 1s ease;
    position: relative;
    overflow: visible;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.title-brand::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: expandLine 1.2s ease 0.5s both;
}

.title-question {
    color: var(--primary-color);
    display: block;
    font-size: 56px;
    animation: fadeInUp 1.2s ease;
}

.why-choose-intro {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1.4s ease;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 155, 99, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 155, 99, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(196, 155, 99, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(196, 155, 99, 0.4);
}

.feature-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(196, 155, 99, 0.1);
    line-height: 1;
    transition: all 0.4s;
}

.feature-card:hover .feature-number {
    color: rgba(196, 155, 99, 0.2);
    transform: scale(1.1);
}

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

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: var(--primary-color);
}

.feature-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.feature-card:hover .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

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


/* Testimonials Section */

.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(196, 155, 99, 0.05) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(196, 155, 99, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.testimonials-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding: 0 20px;
}

.testimonials-subtitle::before,
.testimonials-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--primary-color);
}

.testimonials-subtitle::before {
    right: 100%;
}

.testimonials-subtitle::after {
    left: 100%;
}

.testimonials-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.testimonials-title-main {
    color: var(--secondary-color);
    animation: fadeInUp 0.8s ease;
}

.testimonials-title-accent {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.testimonials-intro {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(196, 155, 99, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #d4af37);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(196, 155, 99, 0.2);
    border-color: var(--primary-color);
}

.testimonial-quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s;
}

.testimonial-quote-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.testimonial-card:hover .testimonial-quote-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(196, 155, 99, 0.4);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    direction: ltr;
}

.testimonial-rating .star {
    font-size: 20px;
    color: #ddd;
    transition: all 0.3s;
}

.testimonial-rating .star.filled {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.testimonial-card:hover .testimonial-rating .star.filled {
    transform: scale(1.2);
    animation: starPulse 0.5s ease;
}

@keyframes starPulse {
    0%,
    100% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.4);
    }
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
    position: relative;
    padding-right: 20px;
    font-style: italic;
    transition: color 0.3s;
}

.testimonial-card:hover .testimonial-text {
    color: #333;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(196, 155, 99, 0.1);
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(196, 155, 99, 0.3);
    transition: all 0.4s;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(196, 155, 99, 0.4);
}

.testimonial-author-details {
    flex: 1;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    transition: color 0.3s;
}

.testimonial-card:hover .testimonial-author {
    color: var(--primary-color);
}

.testimonial-role {
    font-size: 14px;
    color: #999;
    margin: 0;
}


/* Footer */

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

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

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
    display: block;
    margin-bottom: 10px;
}

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

/* Footer Phone Number */
.footer-phone-number-wrapper {
    display: inline-block;
    width: 100%;
    max-width: fit-content;
    margin: 0 0 20px;
}

.footer-phone-number {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    display: flex;
    direction: ltr;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    letter-spacing: 0.2em;
    white-space: nowrap;
    direction: ltr;
    text-align: left;
    unicode-bidi: bidi-override;
    color: var(--white);
}

.footer-contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-contact-buttons .btn {
    padding: 12px 25px;
    font-size: 14px;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.footer-contact-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.footer-contact-buttons .btn-primary:hover {
    background: #b0884f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 155, 99, 0.4);
}

.footer-contact-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.footer-contact-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

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

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    flex-shrink: 0;
}

.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: currentColor;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(196, 155, 99, 0.4);
}

.social-link:hover svg {
    transform: translate(-50%, -50%) scale(1.1);
    fill: var(--dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-phone-number {
        font-size: 20px;
    }
    
    .footer-contact-buttons {
        flex-direction: column;
    }
    
    .footer-contact-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .footer-phone-number {
        font-size: 18px;
        letter-spacing: 0.15em;
    }
    
    .footer-contact-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}


/* Scroll to Top Button */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(196, 155, 99, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 155, 99, 0.6);
    background: linear-gradient(135deg, #d4af37, var(--primary-color));
}

.scroll-to-top:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 155, 99, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    transition: transform 0.3s;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}


/* WhatsApp Button */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    text-decoration: none;
    pointer-events: none;
}

.whatsapp-button.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-button:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    transition: transform 0.3s;
}

.whatsapp-button:hover svg {
    transform: scale(1.1);
}

.scroll-to-top:active svg {
    transform: translateY(0);
}


/* Animations */

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


/* RTL Support */

[dir="rtl"] {
    direction: rtl;
    text-align: right;
}


/* Main Content */

.main-content {
    padding: 60px 0;
    min-height: 60vh;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-header h1,
.entry-header h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.entry-content {
    line-height: 1.8;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.entry-meta {
    color: #999;
    font-size: 14px;
}


/* Responsive - Tablet */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .section-title {
        font-size: 36px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-title {
        font-size: 48px;
    }
    .title-brand {
        font-size: 56px;
        line-height: 1.3;
        padding: 8px 0;
    }
    .testimonials-title {
        font-size: 48px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Responsive - Mobile */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    /* Header */
    .mobile-menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .main-nav li {
        border-bottom: 1px solid #eee;
    }
    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
    }
    .logo {
        height: 50px;
        gap: 10px;
    }
    .logo-img {
        height: 50px;
        max-width: 180px;
    }
    .logo-text {
        font-size: 20px;
    }
    /* Hero Section */
    .hero-section {
        height: 500px;
        padding: 20px 0;
    }
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    /* Statistics */
    .stats-section {
        padding: 60px 0;
    }
    .stats-section {
        padding: 60px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stat-item {
        padding: 40px 25px;
    }
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    .stat-icon svg {
        width: 35px;
        height: 35px;
    }
    .stat-number {
        font-size: 42px;
    }
    .stat-suffix {
        font-size: 42px;
    }
    .stat-label {
        font-size: 16px;
    }
    /* About Section */
    .about-section {
        padding: 60px 0;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-text h2 {
        font-size: 28px;
    }
    /* Reduce transform distance on mobile for animations */
    .scroll-animate-image.hidden {
        transform: translateX(-20px);
    }
    .scroll-animate-text.hidden {
        transform: translateX(20px);
    }
    /* Services */
    .services-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    /* Portfolio */
    .portfolio-section {
        padding: 60px 0;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portfolio-item {
        aspect-ratio: 1 / 1;
        min-height: 0;
        position: relative;
        overflow: hidden;
    }
    
    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    /* Why Choose */
    .why-choose-section {
        padding: 60px 0;
    }
    .why-choose-header {
        margin-bottom: 50px;
    }
    .why-choose-title {
        font-size: 32px;
        gap: 8px;
    }
    .title-brand {
        font-size: 38px;
        line-height: 1.3;
        padding: 6px 0;
    }
    .title-question {
        font-size: 32px;
    }
    .why-choose-intro {
        font-size: 16px;
    }
    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-card {
        padding: 30px 20px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonials-header {
        margin-bottom: 50px;
    }
    .testimonials-title {
        font-size: 32px;
        flex-direction: column;
        gap: 10px;
    }
    .testimonials-intro {
        font-size: 16px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .testimonial-card {
        padding: 30px 25px;
    }
    /* Footer */
    .site-footer {
        padding: 40px 0 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    /* Scroll to Top */
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
    /* General */
    .page-header {
        padding: 60px 0 !important;
    }
    .page-header h1 {
        font-size: 32px !important;
    }
    .page-header p {
        font-size: 16px !important;
    }
}


/* Small Mobile */

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .section-title {
        font-size: 28px;
    }
    .why-choose-title {
        font-size: 28px;
    }
    .title-brand {
        font-size: 32px;
        line-height: 1.3;
        padding: 5px 0;
    }
    .testimonials-title {
        font-size: 28px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .portfolio-item {
        aspect-ratio: 1 / 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    
    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        flex: 1;
        min-height: 0;
    }
    .logo {
        height: 45px;
        gap: 8px;
    }
    .logo-img {
        height: 45px;
        max-width: 150px;
    }
    .logo-text {
        font-size: 18px;
    }
    .main-nav {
        width: 100%;
        max-width: 100%;
    }
}


/* Service Image Wrapper */

.service-archive-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-archive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #d4af37);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-archive-card:hover::before {
    transform: scaleX(1);
}

.service-archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(196, 155, 99, 0.2);
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 280px;
}

.service-image-wrapper .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-archive-card:hover .service-image {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-archive-card:hover .service-image-overlay {
    opacity: 1;
}

.service-overlay-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.service-archive-card:hover .service-overlay-btn {
    transform: scale(1) rotate(0deg);
}

.service-overlay-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 10px 30px rgba(196, 155, 99, 0.4);
}

.service-overlay-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.service-archive-card .service-content {
    background: var(--white);
    padding: 35px;
    border-radius: 0 0 20px 20px;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-archive-card:hover .service-content {
    background: linear-gradient(to bottom, var(--white) 0%, #fafafa 100%);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.1) 0%, rgba(196, 155, 99, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-archive-card:hover .service-icon-wrapper {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 155, 99, 0.25);
}

.service-archive-card:hover .service-icon-wrapper::before {
    opacity: 1;
}

.service-archive-card:hover .service-icon {
    color: var(--white);
    transform: scale(1.1);
}

.service-title {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--secondary-color);
    font-weight: 700;
    transition: color 0.3s;
    line-height: 1.3;
}

.service-archive-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
    flex: 1;
}

.service-archive-card .service-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.1) 0%, rgba(196, 155, 99, 0.05) 100%);
    border: 2px solid transparent;
    width: fit-content;
    font-size: 15px;
}

.service-archive-card .service-btn::before {
    display: none;
}

.service-archive-card .service-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.service-archive-card .service-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(196, 155, 99, 0.3);
}

.service-archive-card .service-btn:hover svg {
    transform: translateX(-3px);
}

.services-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.services-pagination .page-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-pagination .page-numbers li {
    margin: 0;
}

.services-pagination .page-numbers a,
.services-pagination .page-numbers span {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.services-pagination .page-numbers a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 155, 99, 0.3);
}

.services-pagination .page-numbers .current {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 155, 99, 0.3);
}

.services-pagination .page-numbers svg {
    width: 18px;
    height: 18px;
}

.no-services-message {
    text-align: center;
    padding: 80px 20px;
}

.no-services-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.no-services-icon svg {
    width: 60px;
    height: 60px;
}

.no-services-message h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.no-services-message p {
    font-size: 18px;
    color: #666;
}


/* Single Service Page Styles */

.single-service-header {
    background: var(--light-bg);
    padding: 30px 0;
    border-bottom: 1px solid rgba(196, 155, 99, 0.1);
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #666;
}

.service-breadcrumb a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.service-breadcrumb a:hover {
    color: var(--primary-color);
}

.service-breadcrumb .current {
    color: var(--primary-color);
    font-weight: 600;
}

.service-breadcrumb span:not(.current) {
    color: #999;
}

.single-service-content {
    padding: 60px 0;
    background: var(--white);
}

.single-service-article {
    max-width: 1000px;
    margin: 0 auto;
}

.service-featured-image {
    position: relative;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.service-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.service-article-wrapper {
    background: var(--white);
    padding: 0;
}

.service-entry-header {
    margin-bottom: 40px;
    text-align: center;
}

.service-entry-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-header-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.service-entry-content {
    line-height: 1.9;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

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

.service-entry-content h2,
.service-entry-content h3,
.service-entry-content h4 {
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-entry-content h2 {
    font-size: 32px;
}

.service-entry-content h3 {
    font-size: 26px;
}

.service-entry-content h4 {
    font-size: 22px;
}

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

.service-entry-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.service-entry-content img {
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


/* Service Subtitle */

.service-entry-subtitle {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}


/* Service Image Overlay Text */

.service-image-overlay-text {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: auto;
    z-index: 2;
    color: var(--white);
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.service-image-overlay-text .service-icon {
    display: none;
}

.service-overlay-title {
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}


/* Service Intro */

.service-intro {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
    border-right: 4px solid var(--primary-color);
}

.service-intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}


/* Service Section Title */

.service-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 60px 0 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.service-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}


/* Service Features Grid */

.service-features-section {
    margin-bottom: 50px;
}

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

.service-feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-right: 4px solid var(--primary-color);
}

.service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 155, 99, 0.2);
}

.service-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-feature-desc {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* Service Process Timeline */

.service-process-section {
    margin-bottom: 50px;
}

.service-process-timeline {
    position: relative;
    padding-right: 30px;
    margin-top: 30px;
}

.service-process-timeline::before {
    content: '';
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), rgba(196, 155, 99, 0.3));
}

.service-process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(196, 155, 99, 0.3);
    position: relative;
    z-index: 1;
}

.process-step-content {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.process-step-desc {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* Service Details Grid */

.service-details-section {
    margin-bottom: 50px;
}

.service-details-grid,
.service-styles-grid,
.service-brands-grid,
.service-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-detail-item,
.service-style-item,
.service-brand-item,
.service-service-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid var(--primary-color);
}

.service-detail-item:hover,
.service-style-item:hover,
.service-brand-item:hover,
.service-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 155, 99, 0.2);
}

.detail-item-title,
.style-item-title,
.brand-item-name,
.service-service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.detail-item-desc,
.style-item-desc,
.brand-item-desc,
.service-service-desc {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* Service Benefits Grid */

.service-benefits-section {
    margin-bottom: 50px;
}

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

.service-benefit-item {
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(196, 155, 99, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.service-benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.benefit-desc {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* Service Gallery */

.service-gallery-section {
    margin-bottom: 50px;
}

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

.service-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 155, 99, 0.3);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

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

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

.gallery-overlay svg {
    width: 50px;
    height: 50px;
    color: var(--white);
    stroke: currentColor;
    stroke-width: 2;
}

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


/* Service FAQ */

.service-faq-section {
    margin-bottom: 50px;
}

.service-faq-list {
    margin-top: 30px;
}

.service-faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-faq-item:hover {
    box-shadow: 0 10px 30px rgba(196, 155, 99, 0.2);
}

.faq-question {
    padding: 25px;
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.faq-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.faq-answer {
    padding: 25px;
    color: #666;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}


/* Service Why Us */

.service-why-us-section {
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    border-right: 5px solid var(--primary-color);
}

.service-why-us-text {
    font-size: 20px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

.service-cta-section {
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 2px solid rgba(196, 155, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 155, 99, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.service-cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.service-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-cta-subtitle {
    font-size: 18px;
    color: #666;
}

.service-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.service-cta-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.service-cta-btn span {
    position: relative;
    z-index: 1;
}

.service-cta-phone {
    background: var(--primary-color);
    color: var(--white);
}

.service-cta-phone:hover {
    background: #b8945f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 155, 99, 0.4);
}

.service-cta-phone:hover svg {
    transform: rotate(15deg);
}

.service-cta-whatsapp {
    background: #25D366;
    color: var(--white);
}

.service-cta-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.service-cta-whatsapp:hover svg {
    transform: scale(1.1);
}


/* Main Content */

.main-content {
    padding: 60px 0;
    min-height: 60vh;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-header h1,
.entry-header h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.entry-content {
    line-height: 1.8;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.entry-meta {
    color: #999;
    font-size: 14px;
}


/* Responsive - Tablet */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    .header-content {
        min-height: 70px;
    }
    .logo {
        height: 55px;
        gap: 12px;
    }
    .logo-img {
        height: 55px;
        max-width: 200px;
    }
    .logo-text {
        font-size: 22px;
    }
    .main-nav a {
        padding: 20px 15px;
        font-size: 15px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .section-title {
        font-size: 36px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-title {
        font-size: 48px;
    }
    .title-brand {
        font-size: 56px;
        line-height: 1.3;
        padding: 8px 0;
    }
    .testimonials-title {
        font-size: 48px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Services Archive */
    .page-title {
        font-size: 42px;
    }
    .page-subtitle {
        font-size: 20px;
    }
    .services-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Single Service */
    .service-entry-title {
        font-size: 38px;
    }
    .service-featured-image {
        height: 400px;
    }
    .service-cta-section {
        padding: 40px 30px;
    }
    .service-cta-title {
        font-size: 28px;
    }
    /* Service New Elements Tablet */
    .service-section-title {
        font-size: 30px;
    }
    .service-features-grid,
    .service-details-grid,
    .service-styles-grid,
    .service-brands-grid,
    .service-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Responsive - Mobile */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    /* Header */
    .mobile-menu-toggle {
        display: flex;
    }
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(20px);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
        border-left: 1px solid rgba(196, 155, 99, 0.2);
    }
    .main-nav.active {
        right: 0;
    }
    .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, var(--primary-color) 0%, #d4af37 50%, var(--primary-color) 100%);
        box-shadow: -2px 0 10px rgba(196, 155, 99, 0.4);
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 80px 0 30px;
        margin: 0;
    }
    .main-nav li {
        border-bottom: 1px solid rgba(196, 155, 99, 0.08);
        margin: 0;
        opacity: 0;
        transform: translateX(40px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }
    .main-nav li::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(196, 155, 99, 0.05));
        transition: width 0.3s;
    }
    .main-nav li:hover::before {
        width: 100%;
    }
    .main-nav.active li {
        opacity: 1;
        transform: translateX(0);
    }
    .main-nav.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    .main-nav.active li:nth-child(2) {
        transition-delay: 0.2s;
    }
    .main-nav.active li:nth-child(3) {
        transition-delay: 0.3s;
    }
    .main-nav.active li:nth-child(4) {
        transition-delay: 0.4s;
    }
    .main-nav li::after {
        display: none;
    }
    .main-nav a {
        display: block;
        padding: 22px 35px;
        font-size: 18px;
        font-weight: 600;
        color: var(--text-color);
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: 0.3px;
    }
    .main-nav a::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(196, 155, 99, 0.12), rgba(212, 175, 55, 0.08));
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }
    .main-nav a::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), #d4af37);
        transform: translateY(-50%);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 3px 3px 0;
    }
    .main-nav a:hover::after {
        width: 4px;
    }
    .main-nav a:hover::before,
    .main-nav a.active::before {
        width: 100%;
    }
    .main-nav a:hover {
        color: var(--primary-color);
        padding-right: 40px;
    }
    .main-nav a::after {
        content: '←';
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: all 0.3s ease;
        color: var(--primary-color);
        font-size: 20px;
    }
    .main-nav a:hover::after {
        opacity: 1;
        right: 20px;
    }
    .logo {
        height: 45px;
        padding: 15px 0;
        gap: 8px;
    }
    .logo-img {
        height: 45px;
        max-width: 150px;
    }
    .logo-text {
        font-size: 16px;
    }
    /* Hero Section */
    .hero-section {
        height: 500px;
        padding: 20px 0;
    }
    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    .hero-content h1::before {
        border-radius: 10px;
    }
    .hero-content h1::after {
        width: 80px;
        height: 3px;
    }
    .hero-content p {
        font-size: 18px;
        margin-bottom: 30px;
        padding: 15px 20px;
    }
    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    /* Statistics */
    .stats-section {
        padding: 60px 0;
    }
    .stats-section {
        padding: 60px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stat-item {
        padding: 40px 25px;
    }
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    .stat-icon svg {
        width: 35px;
        height: 35px;
    }
    .stat-number {
        font-size: 42px;
    }
    .stat-suffix {
        font-size: 42px;
    }
    .stat-label {
        font-size: 16px;
    }
    /* About Section */
    .about-section {
        padding: 60px 0;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-text h2 {
        font-size: 28px;
    }
    /* Reduce transform distance on mobile for animations */
    .scroll-animate-image.hidden {
        transform: translateX(-20px);
    }
    .scroll-animate-text.hidden {
        transform: translateX(20px);
    }
    /* Services */
    .services-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    /* Portfolio */
    .portfolio-section {
        padding: 60px 0;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portfolio-item {
        aspect-ratio: 1 / 1;
        min-height: 0;
        position: relative;
        overflow: hidden;
    }
    
    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    /* Why Choose */
    .why-choose-section {
        padding: 60px 0;
    }
    .why-choose-header {
        margin-bottom: 50px;
    }
    .why-choose-title {
        font-size: 32px;
        gap: 8px;
    }
    .title-brand {
        font-size: 38px;
        line-height: 1.3;
        padding: 6px 0;
    }
    .title-question {
        font-size: 32px;
    }
    .why-choose-intro {
        font-size: 16px;
    }
    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-card {
        padding: 30px 20px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonials-header {
        margin-bottom: 50px;
    }
    .testimonials-title {
        font-size: 32px;
        flex-direction: column;
        gap: 10px;
    }
    .testimonials-intro {
        font-size: 16px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .testimonial-card {
        padding: 30px 25px;
    }
    /* Footer */
    .site-footer {
        padding: 40px 0 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    /* Scroll to Top */
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
    /* Services Archive Mobile */
    .page-title {
        font-size: 32px;
    }
    .page-subtitle {
        font-size: 18px;
    }
    .services-page-header {
        padding: 30px 0 20px;
    }
    
    .services-page-header .page-title {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .services-page-header .page-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .services-archive-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .service-image-wrapper {
        height: 220px;
    }
    .service-archive-card .service-content {
        padding: 25px;
    }
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .service-icon {
        width: 24px;
        height: 24px;
    }
    .service-title {
        font-size: 20px;
    }
    
    /* Single Service Mobile */
    .service-image-overlay-text {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .service-image-overlay-text .service-icon {
        display: none;
    }
    
    .service-overlay-title {
        font-size: 24px;
    }
    .services-pagination .page-numbers {
        flex-wrap: wrap;
        gap: 8px;
    }
    .services-pagination .page-numbers a,
    .services-pagination .page-numbers span {
        padding: 10px 15px;
        font-size: 14px;
    }
    /* Single Service Mobile */
    .service-breadcrumb {
        font-size: 14px;
        flex-wrap: wrap;
    }
    .service-entry-title {
        font-size: 28px;
    }
    .service-featured-image {
        height: 250px;
        margin-bottom: 30px;
        border-radius: 15px;
    }
    .service-entry-content {
        font-size: 16px;
    }
    .service-entry-content h2 {
        font-size: 24px;
    }
    .service-entry-content h3 {
        font-size: 20px;
    }
    .service-entry-content h4 {
        font-size: 18px;
    }
    .service-cta-section {
        padding: 30px 20px;
        border-radius: 15px;
    }
    .service-cta-title {
        font-size: 24px;
    }
    .service-cta-subtitle {
        font-size: 16px;
    }
    .service-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .service-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    /* General */
    .page-header {
        padding: 60px 0 !important;
    }
    .page-header h1 {
        font-size: 32px !important;
    }
    .page-header p {
        font-size: 16px !important;
    }
}


/* Small Mobile */

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .section-title {
        font-size: 28px;
    }
    .why-choose-title {
        font-size: 28px;
    }
    .title-brand {
        font-size: 32px;
        line-height: 1.3;
        padding: 5px 0;
    }
    .testimonials-title {
        font-size: 28px;
    }
    .logo {
        height: 45px;
        gap: 8px;
    }
    .logo-img {
        height: 45px;
        max-width: 150px;
    }
    .logo-text {
        font-size: 18px;
    }
    .main-nav {
        width: 100%;
        max-width: 100%;
    }
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.gallery-lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    stroke-width: 2.5;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
}

.gallery-lightbox-prev {
    right: 20px;
}

.gallery-lightbox-next {
    left: 20px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev svg,
.gallery-lightbox-next svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    stroke-width: 2.5;
}


/* Service FAQ */

.service-faq-section {
    margin-bottom: 50px;
}

.service-faq-list {
    margin-top: 30px;
}

.service-faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-faq-item:hover {
    box-shadow: 0 10px 30px rgba(196, 155, 99, 0.2);
}

.faq-question {
    padding: 25px;
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.faq-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.faq-answer {
    padding: 25px;
    color: #666;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}


/* Service Why Us */

.service-why-us-section {
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    border-right: 5px solid var(--primary-color);
}

.service-why-us-text {
    font-size: 20px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

.service-cta-section {
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 2px solid rgba(196, 155, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 155, 99, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.service-cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.service-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-cta-subtitle {
    font-size: 18px;
    color: #666;
}

.service-cta-phone-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 25px;
    direction: ltr !important;
    text-align: center;
    display: block;
    unicode-bidi: bidi-override;
    letter-spacing: 1px;
}

.service-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.service-cta-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.service-cta-btn span {
    position: relative;
    z-index: 1;
}

.service-cta-phone {
    background: var(--primary-color);
    color: var(--white);
}

.service-cta-phone:hover {
    background: #b8945f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 155, 99, 0.4);
}

.service-cta-phone:hover svg {
    transform: rotate(15deg);
}

.service-cta-whatsapp {
    background: #25D366;
    color: var(--white);
}

.service-cta-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.service-cta-whatsapp:hover svg {
    transform: scale(1.1);
}


/* Main Content */

.main-content {
    padding: 60px 0;
    min-height: 60vh;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-header h1,
.entry-header h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.entry-content {
    line-height: 1.8;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.entry-meta {
    color: #999;
    font-size: 14px;
}


/* Responsive - Tablet */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    .header-content {
        min-height: 70px;
    }
    .logo {
        height: 55px;
        gap: 12px;
    }
    .logo-img {
        height: 55px;
        max-width: 200px;
    }
    .logo-text {
        font-size: 22px;
    }
    .main-nav a {
        padding: 20px 15px;
        font-size: 15px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .section-title {
        font-size: 36px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-title {
        font-size: 48px;
    }
    .title-brand {
        font-size: 56px;
        line-height: 1.3;
        padding: 8px 0;
    }
    .testimonials-title {
        font-size: 48px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Services Archive */
    .page-title {
        font-size: 42px;
    }
    .page-subtitle {
        font-size: 20px;
    }
    .services-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Single Service */
    .service-entry-title {
        font-size: 38px;
    }
    .service-featured-image {
        height: 400px;
    }
    .service-cta-section {
        padding: 40px 30px;
    }
    .service-cta-title {
        font-size: 28px;
    }
    /* Service New Elements Tablet */
    .service-section-title {
        font-size: 30px;
    }
    .service-features-grid,
    .service-details-grid,
    .service-styles-grid,
    .service-brands-grid,
    .service-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 50px;
        height: 50px;
    }
    .gallery-lightbox-prev {
        right: 10px;
    }
    .gallery-lightbox-next {
        left: 10px;
    }
    .gallery-lightbox-close {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
    }
}


/* Responsive - Mobile */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    /* Header */
    .mobile-menu-toggle {
        display: flex;
    }
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(20px);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
        border-left: 1px solid rgba(196, 155, 99, 0.2);
    }
    .main-nav.active {
        right: 0;
    }
    .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, var(--primary-color) 0%, #d4af37 50%, var(--primary-color) 100%);
        box-shadow: -2px 0 10px rgba(196, 155, 99, 0.4);
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 80px 0 30px;
        margin: 0;
    }
    .main-nav li {
        border-bottom: 1px solid rgba(196, 155, 99, 0.08);
        margin: 0;
        opacity: 0;
        transform: translateX(40px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }
    .main-nav li::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(196, 155, 99, 0.05));
        transition: width 0.3s;
    }
    .main-nav li:hover::before {
        width: 100%;
    }
    .main-nav.active li {
        opacity: 1;
        transform: translateX(0);
    }
    .main-nav.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    .main-nav.active li:nth-child(2) {
        transition-delay: 0.2s;
    }
    .main-nav.active li:nth-child(3) {
        transition-delay: 0.3s;
    }
    .main-nav.active li:nth-child(4) {
        transition-delay: 0.4s;
    }
    .main-nav li::after {
        display: none;
    }
    .main-nav a {
        display: block;
        padding: 22px 35px;
        font-size: 18px;
        font-weight: 600;
        color: var(--text-color);
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: 0.3px;
    }
    .main-nav a::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(196, 155, 99, 0.12), rgba(212, 175, 55, 0.08));
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }
    .main-nav a::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), #d4af37);
        transform: translateY(-50%);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 3px 3px 0;
    }
    .main-nav a:hover::after {
        width: 4px;
    }
    .main-nav a:hover::before,
    .main-nav a.active::before {
        width: 100%;
    }
    .main-nav a:hover {
        color: var(--primary-color);
        padding-right: 40px;
    }
    .main-nav a::after {
        content: '←';
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: all 0.3s ease;
        color: var(--primary-color);
        font-size: 20px;
    }
    .main-nav a:hover::after {
        opacity: 1;
        right: 20px;
    }
    .logo {
        height: 45px;
        padding: 15px 0;
        gap: 8px;
    }
    .logo-img {
        height: 45px;
        max-width: 150px;
    }
    .logo-text {
        font-size: 16px;
    }
    /* Hero Section */
    .hero-section {
        height: 500px;
        padding: 20px 0;
    }
    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    .hero-content h1::before {
        border-radius: 10px;
    }
    .hero-content h1::after {
        width: 80px;
        height: 3px;
    }
    .hero-content p {
        font-size: 18px;
        margin-bottom: 30px;
        padding: 15px 20px;
    }
    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    /* Statistics */
    .stats-section {
        padding: 60px 0;
    }
    .stats-section {
        padding: 60px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stat-item {
        padding: 40px 25px;
    }
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    .stat-icon svg {
        width: 35px;
        height: 35px;
    }
    .stat-number {
        font-size: 42px;
    }
    .stat-suffix {
        font-size: 42px;
    }
    .stat-label {
        font-size: 16px;
    }
    /* About Section */
    .about-section {
        padding: 60px 0;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-text h2 {
        font-size: 28px;
    }
    /* Reduce transform distance on mobile for animations */
    .scroll-animate-image.hidden {
        transform: translateX(-20px);
    }
    .scroll-animate-text.hidden {
        transform: translateX(20px);
    }
    /* Services */
    .services-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    /* Portfolio */
    .portfolio-section {
        padding: 60px 0;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portfolio-item {
        aspect-ratio: 1 / 1;
        min-height: 0;
        position: relative;
        overflow: hidden;
    }
    
    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    /* Why Choose */
    .why-choose-section {
        padding: 60px 0;
    }
    .why-choose-header {
        margin-bottom: 50px;
    }
    .why-choose-title {
        font-size: 32px;
        gap: 8px;
    }
    .title-brand {
        font-size: 38px;
        line-height: 1.3;
        padding: 6px 0;
    }
    .title-question {
        font-size: 32px;
    }
    .why-choose-intro {
        font-size: 16px;
    }
    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-card {
        padding: 30px 20px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonials-header {
        margin-bottom: 50px;
    }
    .testimonials-title {
        font-size: 32px;
        flex-direction: column;
        gap: 10px;
    }
    .testimonials-intro {
        font-size: 16px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .testimonial-card {
        padding: 30px 25px;
    }
    /* Footer */
    .site-footer {
        padding: 40px 0 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    /* Scroll to Top */
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        z-index: 9999 !important;
        display: flex !important;
    }
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
    .whatsapp-button {
        bottom: 20px;
        right: 20px !important;
        width: 45px;
        height: 45px;
        z-index: 9999 !important;
        display: flex !important;
    }
    .whatsapp-button svg {
        width: 20px;
        height: 20px;
    }
    /* Services Archive Mobile */
    .page-title {
        font-size: 32px;
    }
}


/* Single Portfolio Page Styles */

.single-portfolio-content {
    background: var(--light-bg);
}

.portfolio-breadcrumb {
    padding: 30px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.portfolio-breadcrumb a:hover {
    color: var(--primary-color);
}

.portfolio-breadcrumb span {
    color: #999;
}


/* Portfolio Hero */

.portfolio-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c3e50 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.portfolio-hero-category {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(196, 155, 99, 0.2);
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.portfolio-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}


/* Portfolio Main Media */

.portfolio-main-media {
    padding: 60px 0;
    background: var(--white);
}

.portfolio-video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.portfolio-main-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.portfolio-main-image:hover .portfolio-featured-image {
    transform: scale(1.05);
}


/* Portfolio Features */

.portfolio-features {
    padding: 80px 0;
    background: var(--light-bg);
}

.portfolio-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.portfolio-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.portfolio-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 155, 99, 0.2);
}

.portfolio-feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.portfolio-feature-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}


/* Portfolio Gallery */

.portfolio-gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.portfolio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.portfolio-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.portfolio-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-gallery-item:hover::after {
    opacity: 1;
}


/* Portfolio CTA */

.portfolio-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c3e50 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.portfolio-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.portfolio-cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.portfolio-cta-buttons .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
}

.portfolio-cta-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.portfolio-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

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

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

.portfolio-contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.portfolio-phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-phone-number:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 155, 99, 0.2);
}

.portfolio-phone-number svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.portfolio-phone-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    direction: ltr;
    text-align: center;
    letter-spacing: 1px;
}

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

.portfolio-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-contact-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s;
}

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

.portfolio-phone-btn:hover {
    background: #b8945f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 155, 99, 0.4);
}

.portfolio-phone-btn:hover svg {
    transform: rotate(15deg);
}

.portfolio-whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.portfolio-whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.portfolio-whatsapp-btn:hover svg {
    transform: scale(1.1);
}

/* Portfolio Testimonials Section */
.portfolio-testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

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

.portfolio-testimonial-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(196, 155, 99, 0.2);
}

.portfolio-testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    direction: ltr;
    justify-content: center;
}

.portfolio-testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    text-align: center;
}

.portfolio-testimonial-author {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.portfolio-testimonial-author strong {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Portfolio Gallery Lightbox */
.gallery-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    font-size: 32px;
    color: var(--white);
    line-height: 1;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    font-size: 28px;
    color: var(--white);
    border: none;
}

.gallery-lightbox-nav.prev {
    right: 20px;
}

.gallery-lightbox-nav.next {
    left: 20px;
}

.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Portfolio Responsive */
@media (max-width: 768px) {
    .portfolio-hero {
        padding: 40px 0;
    }
    
    .portfolio-hero-title {
        font-size: 32px;
    }
    
    .portfolio-hero-description {
        font-size: 16px;
    }
    
    .portfolio-main-media {
        padding: 40px 0;
    }
    
    .portfolio-features {
        padding: 60px 0;
    }
    
    .portfolio-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .portfolio-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-gallery-section {
        padding: 60px 0;
    }
    
    .portfolio-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-testimonials-section {
        padding: 60px 0;
    }
    
    .portfolio-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-contact-section {
        padding: 60px 0;
    }
    
    .portfolio-contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .portfolio-contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .portfolio-cta {
        padding: 60px 0;
    }
    
    .portfolio-cta h2 {
        font-size: 28px;
    }
    
    .portfolio-cta p {
        font-size: 16px;
    }
    
    .gallery-lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .gallery-lightbox-nav.prev {
        right: 10px;
    }
    
    .gallery-lightbox-nav.next {
        left: 10px;
    }
    
    .gallery-lightbox-close {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-title {
        font-size: 28px;
    }
    
    .portfolio-section-title {
        font-size: 24px;
    }
    
    .portfolio-feature-item {
        padding: 20px;
    }
    
    .portfolio-testimonial-card {
        padding: 25px;
    }
    
    .portfolio-phone-number {
        padding: 20px;
    }
    
    .portfolio-phone-text {
        font-size: 20px;
    }
}


/* 404 Error Page */

.error-404-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-404-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.error-404-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    color: var(--primary-color);
    opacity: 0.8;
    animation: pulse 2s infinite;
}

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

.error-404-icon svg {
    width: 100%;
    height: 100%;
}

.error-404-title {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px;
    line-height: 1;
}

.error-404-subtitle {
    font-size: 36px;
    color: var(--secondary-color);
    margin: 0 0 20px;
    font-weight: 700;
}

.error-404-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 40px;
}

.error-404-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.error-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.error-404-btn svg {
    width: 20px;
    height: 20px;
}

.error-404-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 155, 99, 0.4);
}

.error-404-links {
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.error-404-links-title {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0 0 20px;
    font-weight: 600;
}

.error-404-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-404-links-list li {
    margin: 0;
}

.error-404-links-list a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.error-404-links-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.error-404-links-list a:hover {
    color: var(--primary-color);
}

.error-404-links-list a:hover::after {
    width: 100%;
}


/* 404 Responsive */

@media (max-width: 768px) {
    .error-404-content {
        padding: 60px 0;
    }
    .error-404-wrapper {
        padding: 40px 25px;
    }
    .error-404-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 25px;
    }
    .error-404-title {
        font-size: 80px;
    }
    .error-404-subtitle {
        font-size: 28px;
    }
    .error-404-description {
        font-size: 16px;
    }
    .error-404-actions {
        flex-direction: column;
        gap: 15px;
    }
    .error-404-btn {
        width: 100%;
        justify-content: center;
    }
    .error-404-links-list {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .error-404-title {
        font-size: 60px;
    }
    .error-404-subtitle {
        font-size: 24px;
    }
    .error-404-icon {
        width: 100px;
        height: 100px;
    }
}

.page-subtitle {
    font-size: 18px;
}

.services-page-header {
    padding: 35px 0 25px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.services-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.services-page-header .container {
    position: relative;
    z-index: 2;
}

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

.services-page-header .page-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.services-page-header .page-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: center;
}

.services-page-header .page-header-decoration {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.services-archive-content {
    padding: 50px 0 60px;
    background: var(--light-bg);
}

.services-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    padding: 0;
    justify-items: center;
}

@media (min-width: 1200px) {
    .services-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
}

.service-archive-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-archive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #d4af37);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-archive-card:hover::before {
    transform: scaleX(1);
}

.service-archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(196, 155, 99, 0.2);
}

.service-image-wrapper {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.service-image-wrapper .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-archive-card:hover .service-image {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-archive-card:hover .service-image-overlay {
    opacity: 1;
}

.service-overlay-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.service-archive-card:hover .service-overlay-btn {
    transform: scale(1) rotate(0deg);
}

.service-overlay-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 10px 30px rgba(196, 155, 99, 0.4);
}

.service-overlay-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.service-archive-card .service-content {
    background: var(--white);
    padding: 35px;
    border-radius: 0 0 20px 20px;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-archive-card:hover .service-content {
    background: linear-gradient(to bottom, var(--white) 0%, #fafafa 100%);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.1) 0%, rgba(196, 155, 99, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-archive-card:hover .service-icon-wrapper {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 155, 99, 0.25);
}

.service-archive-card:hover .service-icon-wrapper::before {
    opacity: 1;
}

.service-archive-card:hover .service-icon {
    color: var(--white);
    transform: scale(1.1);
}

.service-title {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--secondary-color);
    font-weight: 700;
    transition: color 0.3s;
    line-height: 1.3;
}

.service-archive-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
    flex: 1;
}

.service-archive-card .service-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(196, 155, 99, 0.1) 0%, rgba(196, 155, 99, 0.05) 100%);
    border: 2px solid transparent;
    width: fit-content;
    font-size: 15px;
}

.service-archive-card .service-btn::before {
    display: none;
}

.service-archive-card .service-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.service-archive-card .service-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(196, 155, 99, 0.3);
}

.service-archive-card .service-btn:hover svg {
    transform: translateX(-3px);
}

.service-title {
    font-size: 20px;
}

.services-pagination .page-numbers {
    flex-wrap: wrap;
    gap: 8px;
}

.services-pagination .page-numbers a,
.services-pagination .page-numbers span {
    padding: 10px 15px;
    font-size: 14px;
}


/* Single Service Mobile */

.service-breadcrumb {
    font-size: 14px;
    flex-wrap: wrap;
}

.service-entry-title {
    font-size: 28px;
}

.service-featured-image {
    height: 250px;
    margin-bottom: 30px;
    border-radius: 15px;
}

.service-entry-content {
    font-size: 16px;
}

.service-entry-content h2 {
    font-size: 24px;
}

.service-entry-content h3 {
    font-size: 20px;
}

.service-entry-content h4 {
    font-size: 18px;
}

.service-cta-section {
    padding: 30px 20px;
    border-radius: 15px;
}

.service-cta-title {
    font-size: 24px;
}

.service-cta-subtitle {
    font-size: 16px;
}

    .service-cta-phone-number {
        font-size: 20px;
        margin: 15px 0 20px;
        direction: ltr;
        text-align: left;
        display: inline-block;
        unicode-bidi: bidi-override;
    }

.service-cta-buttons {
    flex-direction: column;
    gap: 15px;
}

.service-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
}


/* General */

.page-header {
    padding: 60px 0 !important;
}

.page-header h1 {
    font-size: 32px !important;
}

.page-header p {
    font-size: 16px !important;
}


}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        height: 450px;
        padding: 15px 0;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        padding: 0 5px;
    }
    
    .hero-content p {
        font-size: 14px;
        padding: 0 5px;
    }
    
    .hero-phone-number {
        font-size: 20px;
        margin: 0 0 15px;
        padding: 0 5px;
    }
    
    .hero-buttons {
        padding: 0 5px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .why-choose-title {
        font-size: 28px;
    }
    
    .title-brand {
        font-size: 32px;
        line-height: 1.3;
        padding: 5px 0;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .logo {
        height: 40px;
        gap: 6px;
    }
    .logo-img {
        height: 40px;
        max-width: 120px;
    }
    .logo-text {
        font-size: 14px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .logo {
        height: 35px;
        gap: 5px;
    }
    .logo-img {
        height: 35px;
        max-width: 100px;
    }
    .logo-text {
        font-size: 12px;
    }
}
        width: 100%;
        max-width: 100%;
    }
}/* ========================================
   Blog Styles - احترافي وجميل
   ======================================== */

/* Blog Page Header */
.blog-page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c3e50 100%);
    text-align: center;
    overflow: hidden;
}

.blog-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.blog-page-header .page-header-overlay {
    z-index: 1;
}

.blog-page-header .container {
    position: relative;
    z-index: 2;
}

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

.blog-page-header .page-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
    line-height: 1.3;
}

.blog-page-header .page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
    font-weight: 400;
}

.blog-page-header .page-header-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: fadeInUp 1.2s ease-out;
}

/* Blog Page Header Responsive */
@media (max-width: 768px) {
    .blog-page-header {
        padding: 80px 0 60px;
    }
    
    .blog-page-header .page-title {
        font-size: 42px;
        margin-bottom: 18px;
    }
    
    .blog-page-header .page-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .blog-page-header {
        padding: 60px 0 40px;
    }
    
    .blog-page-header .page-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .blog-page-header .page-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .blog-page-header .page-header-decoration {
        width: 80px;
        height: 3px;
    }
}

/* Blog Archive Content */
.blog-archive-content {
    padding: 60px 0 80px;
    background: var(--light-bg);
}

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

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(196, 155, 99, 0.2);
    border-color: rgba(196, 155, 99, 0.3);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--light-bg);
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-read-more {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    border-radius: 25px;
    transform: translateY(10px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-card:hover .blog-card-read-more {
    transform: translateY(0);
    background: #b8945f;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-card-date,
.blog-card-category {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.blog-card-date svg,
.blog-card-category svg {
    width: 15px;
    height: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.blog-card-category {
    color: var(--primary-color);
    background: rgba(196, 155, 99, 0.12);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.blog-card-author svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.blog-pagination .page-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 99, 0.3);
}

.blog-pagination .page-numbers .current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 155, 99, 0.4);
}

.blog-pagination .page-numbers svg {
    width: 18px;
    height: 18px;
}

/* Single Blog Post */
.blog-single-content {
    background: var(--light-bg);
}

.blog-breadcrumb {
    padding: 30px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-breadcrumb a:hover {
    color: var(--primary-color);
}

.blog-breadcrumb span {
    color: #999;
}

.blog-featured-image-wrapper {
    margin-bottom: 50px;
}

.blog-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

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

.blog-article {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    margin: -80px auto 60px;
    max-width: 900px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.blog-article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-article-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-article-date,
.blog-article-category,
.blog-article-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.blog-article-date svg,
.blog-article-category svg,
.blog-article-author svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.blog-article-category {
    color: var(--primary-color);
    background: rgba(196, 155, 99, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
}

.blog-article-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.3;
    margin: 0;
}

.blog-article-content {
    font-size: 18px;
    line-height: 2;
    color: #444;
}

.blog-article-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.blog-article-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

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

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

.blog-article-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Blog Share Section */
.blog-share-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.blog-share-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
}

.blog-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-share-btn svg {
    width: 20px;
    height: 20px;
}

.blog-share-facebook {
    background: #1877F2;
    color: var(--white);
}

.blog-share-facebook:hover {
    background: #166FE5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.blog-share-twitter {
    background: #000000;
    color: var(--white);
}

.blog-share-twitter:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.blog-share-whatsapp {
    background: #25D366;
    color: var(--white);
}

.blog-share-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Blog Related Posts */
.blog-related-posts {
    padding: 80px 0;
    background: var(--white);
}

.blog-related-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.blog-related-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-related-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(196, 155, 99, 0.2);
}

.blog-related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-related-card:hover img {
    transform: scale(1.1);
}

.blog-related-card h3 {
    padding: 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s;
}

.blog-related-card:hover h3 {
    color: var(--primary-color);
}

.blog-not-found {
    text-align: center;
    padding: 100px 20px;
}

.blog-not-found h1 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.blog-not-found p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .blog-article {
        padding: 40px;
    }
    
    .blog-article-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .blog-page-header {
        padding: 80px 0 60px;
    }
    
    .blog-page-title {
        font-size: 42px;
    }
    
    .blog-page-subtitle {
        font-size: 18px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-card-image-wrapper {
        height: 240px;
    }
    
    .blog-card-content {
        padding: 25px;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
    
    .blog-featured-image {
        height: 300px;
    }
    
    .blog-article {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .blog-article-title {
        font-size: 28px;
    }
    
    .blog-article-content {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .blog-article-content h2 {
        font-size: 24px;
    }
    
    .blog-article-content h3 {
        font-size: 20px;
    }
    
    .blog-share-buttons {
        flex-direction: column;
    }
    
    .blog-share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-page-title {
        font-size: 32px;
    }
    
    .blog-card-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-article-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-article-title {
        font-size: 24px;
    }
}

