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

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.8;
    color: #2c3e50;
    background: #f8f9fa;
}

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

.main-header {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.brand-name {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    color: #fff;
    z-index: 1;
}

.hero-title {
    font-size: 58px;
    margin-bottom: 25px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease;
    transition: all 0.4s ease;
}

.hero-title:hover {
    transform: scale(1.05);
    text-shadow: 4px 4px 12px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 35px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: #D2691E;
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(210,105,30,0.4);
}

.cta-button:hover {
    background: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139,69,19,0.5);
}

.services-section,
.experience-section,
.pricing-section,
.testimonials-section,
.faq-section,
.gallery-section {
    padding: 90px 0;
}

.section-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 55px;
    color: #8B4513;
    position: relative;
    padding-bottom: 20px;
    transition: all 0.4s ease;
}

.section-heading:hover {
    transform: scale(1.05);
    color: #D2691E;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #D2691E);
    border-radius: 2px;
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139,69,19,0.2);
}

.service-icon {
    font-size: 55px;
    color: #D2691E;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service-card h3:hover {
    color: #D2691E;
    transform: scale(1.05);
}

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

.experience-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #8B4513;
}

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

.features-list li {
    padding: 12px 0;
    font-size: 18px;
}

.features-list i {
    color: #D2691E;
    margin-left: 12px;
}

.experience-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #D2691E;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: #D2691E;
    color: #fff;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139,69,19,0.2);
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: right;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.package-btn {
    display: inline-block;
    background: #D2691E;
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: #8B4513;
    transform: scale(1.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139,69,19,0.2);
}

.stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
}

.client-name {
    margin-top: 20px;
    font-weight: 600;
    color: #8B4513;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 19px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-question h3:hover {
    color: #D2691E;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 300px;
}

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

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139,69,19,0.3);
}

.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 60px 0 25px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #D2691E;
}

.footer-col p,
.footer-col a {
    color: #ecf0f1;
    line-height: 2;
    text-decoration: none;
}

.footer-col i {
    margin-left: 10px;
    color: #D2691E;
}

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

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

.footer-links a:hover {
    color: #D2691E;
    padding-right: 5px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(44,62,80,0.98);
    color: #fff;
    padding: 30px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #D2691E;
}

.cookie-text a {
    color: #D2691E;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #D2691E;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #8B4513;
}

.cookie-btn.customize {
    background: #95a5a6;
    color: #fff;
}

.cookie-btn.customize:hover {
    background: #7f8c8d;
}

.cookie-btn.decline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cookie-btn.decline:hover {
    background: rgba(255,255,255,0.1);
}

.page-header-blog,
.page-header-about,
.page-header-contact {
    background: linear-gradient(rgba(139,69,19,0.8), rgba(210,105,30,0.8)), url('images/2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.page-header-blog h1,
.page-header-about h1,
.page-header-contact h1 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.blog-section {
    padding: 80px 0;
}

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

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

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139,69,19,0.2);
}

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    color: #7f8c8d;
    font-size: 14px;
}

.blog-meta i {
    margin-left: 6px;
}

.blog-card h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.blog-card h2:hover {
    color: #D2691E;
}

.read-more {
    color: #D2691E;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.about-intro {
    padding: 80px 0;
}

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

.about-text-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #8B4513;
}

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

.mission-vision {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.mv-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139,69,19,0.2);
}

.mv-card i {
    font-size: 50px;
    color: #D2691E;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.team-section {
    padding: 80px 0;
}

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

.team-member {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139,69,19,0.2);
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.position {
    color: #D2691E;
    font-weight: 600;
    margin-bottom: 18px;
}

.bio {
    color: #7f8c8d;
    line-height: 1.8;
}

.achievements-section {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    padding: 80px 0;
    color: #fff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.achievement-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-side h2,
.contact-form-side h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #8B4513;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 28px;
    color: #D2691E;
    margin-top: 5px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D2691E;
}

.submit-btn {
    background: #D2691E;
    color: #fff;
    padding: 16px 45px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #8B4513;
    transform: translateY(-2px);
}

.spell-check-btn {
    background: #95a5a6;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.spell-check-btn:hover {
    background: #7f8c8d;
}

.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: modalFadeIn 0.5s ease;
}

.modal-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 25px;
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.modal-btn {
    background: #D2691E;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: #8B4513;
}

.post-page {
    padding: 80px 0;
}

.post-header {
    text-align: center;
    margin-bottom: 50px;
}

.post-header h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.4;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #7f8c8d;
    font-size: 15px;
}

.post-featured-image {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
}

.post-content h2 {
    font-size: 36px;
    color: #8B4513;
    margin: 45px 0 25px;
    transition: all 0.3s ease;
}

.post-content h2:hover {
    color: #D2691E;
    transform: translateX(5px);
}

.post-content h3 {
    font-size: 28px;
    color: #2c3e50;
    margin: 35px 0 20px;
    transition: all 0.3s ease;
}

.post-content h3:hover {
    color: #D2691E;
    transform: translateX(5px);
}

.post-content ul {
    margin: 25px 0;
    padding-right: 30px;
}

.post-content li {
    margin-bottom: 12px;
}

.post-footer {
    margin-top: 60px;
    text-align: center;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #D2691E;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    gap: 15px;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .navigation-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .experience-content,
    .about-content-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .section-heading {
        font-size: 32px;
    }
}