
/*
Theme Name: LuxeHome - Professional Interior Design Theme
Theme URI: https://yoursite.com/luxehome
Author: Your Company
Author URI: https://yoursite.com
Description: A modern, responsive WordPress theme for interior design and home decoration businesses. Features include portfolio showcases, designer profiles, and project galleries.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxehome
Tags: interior-design, portfolio, responsive, custom-menu, featured-images
*/

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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a870;
    --accent-color: #e8d5b7;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* ========================================
   Navigation Dropdown Styles
======================================== */
/* Consolidated navigation selectors */
nav li, .header-nav li, #header li, .site-header li {
    position: relative !important;
}

nav ul ul, .header-nav ul ul, #header ul ul, .site-header ul ul,
nav li ul, .header-nav li ul, #header li ul, .site-header li ul {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 200px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    z-index: 99999 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

nav li:hover > ul, .header-nav li:hover > ul, 
#header li:hover > ul, .site-header li:hover > ul {
    display: block !important;
}

nav ul ul li, .header-nav ul ul li, #header ul ul li, .site-header ul ul li {
    display: block !important;
    width: 100% !important;
    float: none !important;
}

nav ul ul li a, .header-nav ul ul li a, #header ul ul li a, .site-header ul ul li a {
    display: block !important;
    padding: 10px 15px !important;
    color: #333333 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #eeeeee !important;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* ========================================
   Header & Navigation
======================================== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header.sticky {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.header-main {
    padding: 20px 0;
}

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

.site-logo a {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.site-logo span {
    color: var(--secondary-color);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-navigation a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

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

.header-social a {
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--secondary-color);
}

/* ========================================
   Breadcrumbs
======================================== */
.breadcrumbs {
    background: var(--bg-light);
    padding: 20px 0;
    font-size: 14px;
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

/* ========================================
   Hero Section
======================================== */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: var(--primary-color);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
}

.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(201, 168, 112, 0.7));
}

.slide .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 700px;
    animation: slideInUp 1s ease;
}

.slide.active .slide-content {
    animation: slideInUp 1s ease;
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

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

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

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover,
.slider-dot.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ========================================
   Button Styles
======================================== */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ========================================
   Section Styles
======================================== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title .subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

/* ========================================
   Grid Layouts
======================================== */
.grid-3, .grid-4 {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   Card Styles
======================================== */
/* Base Card Styles */
.product-card, .designer-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

/* Product Card Specific */
.product-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-content {
    padding: 25px;
}

.product-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Case Study Card Specific */
.case-card {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.case-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

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

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

.case-card-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.case-card-meta {
    color: var(--accent-color);
    font-size: 14px;
}

/* Designer Card Specific */
.designer-card {
    text-align: center;
    padding: 30px;
}

.designer-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
}

.designer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.designer-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.designer-title {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.designer-experience {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ========================================
   Content Pages with Sidebar
======================================== */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 60px 0;
}

.main-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.entry-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.entry-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.entry-content h2, .entry-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* ========================================
   Sidebar
======================================== */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.widget-list {
    list-style: none;
}

.widget-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}

.widget-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-list-item {
    display: flex;
    gap: 15px;
}

.widget-list-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.widget-list-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-list-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.widget-list-content p {
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

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

/* ========================================
   Form Styles
======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201,168,112,0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Search Form */
.search-form {
    position: relative;
    max-width: 400px;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 1px solid #dddddd;
    border-radius: 30px;
    font-size: 14px;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-color);
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-widget ul {
    list-style: none;
}

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

.footer-widget a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-widget a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

/* Footer Widget Styles */
.footer-widget h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column {
    flex: 1;
    padding: 0 15px;
}

/* ========================================
   Pagination
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    background: var(--white);
    border: 1px solid #dddddd;
    border-radius: 5px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.pagination .current {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.pagination .dots {
    border: none;
    background: transparent;
}

/* ========================================
   Comments Section
======================================== */
.comments-area {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--accent-color);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.comment-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    float: left;
    margin-right: 15px;
}

.comment-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* ========================================
   404 Page
======================================== */
.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404 h1 {
    font-size: 120px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

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

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ========================================
   Map Container
======================================== */
.map-container {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.contact-info {
    padding-top: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

/* ========================================
   Utility Classes
======================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

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

/* ========================================
   Animations
======================================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in-element {
    animation: fadeIn 0.6s ease;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .main-navigation a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eeeeee;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    /* Slider responsive */
    .hero-slider {
        height: 600px;
    }

    .slide-content {
        padding-top: 150px;
    }

    .slide-title {
        font-size: 42px;
    }

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

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-control.prev {
        left: 15px;
    }

    .slider-control.next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }

    .hero-section {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .main-content {
        padding: 25px;
    }

    /* Slider mobile styles */
    .hero-slider {
        height: 500px;
    }

    .slide-content {
        padding-top: 120px;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .slider-control {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .slider-control.prev {
        left: 10px;
    }

    .slider-control.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    /* FAQ Section Responsive */
    .faq-section {
        padding: 40px 15px;
    }

    .faq-question {
        font-size: 1rem;
    }

    /* Map Container Responsive */
    .map-container iframe {
        height: 200px;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}

/* ========================================
   Print Styles
======================================== */
@media print {
    .site-header,
    .site-footer,
    .breadcrumbs,
    .sidebar,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }

    .main-content {
        width: 100% !important;
        box-shadow: none !important;
    }
}







.section {
    padding: 60px 0;
}

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


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


.service-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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


.service-text {
    padding: 20px 0;
}

.service-text h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.service-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

.service-text ul {
    list-style: none;
    padding: 20px 0;
}

.service-text li {
    color: var(--text-light);
    padding: 12px 0;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 16px;
}

.service-text li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}


@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-text {
        padding: 20px 0;
    }

    .service-text h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-text p,
    .service-text li {
        font-size: 15px;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}


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

.service-content {
    animation: fadeIn 0.8s ease-out;
}


.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.btn-consultation {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-consultation:hover {
    background-color: var(--primary-dark);
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.btn-phone i {
    font-size: 18px;
}

.btn-phone:hover {
    color: var(--primary-dark);
}


@media (max-width: 768px) {
    .header-buttons {
        display: none;
    }
}










.section {
    padding: 80px 0;
}

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

/*  */
.categories-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/*  */
.about-section {
    background-color: #c9a870;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.company-logo {
    margin-bottom: 25px;
}

.company-logo img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.company-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.company-description {
    margin-bottom: 30px;
}

.description-text {
    color: #fff;
    line-height: 1.6;
    font-size: 15px;
    text-align: left;
}

.description-text p {
    margin-bottom: 15px;
}

.description-text p:last-child {
    margin-bottom: 0;
}


.categories-list {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.category-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-item:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.item-icon {
    width: 45px;
    height: 45px;
    background-color: #c9a870;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    flex-shrink: 0;
}

.item-icon i {
    font-size: 18px;
}

.item-content {
    flex: 1;
}

.item-content h3 {
    margin: 0 0 8px 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.item-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}


.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background-color: #fff;
    color: #000000;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    border:1px solid #fff;
    background-color: #fff0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #000000;
    opacity: 1;
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .categories-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-section,
    .categories-list {
        padding: 30px 20px;
    }

    .company-logo img {
        max-width: 150px;
    }

    .company-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .description-text {
        font-size: 14px;
    }

    .category-item {
        padding: 15px;
    }

    .item-icon {
        width: 40px;
        height: 40px;
    }

    .item-icon i {
        font-size: 16px;
    }

    .item-content h3 {
        font-size: 16px;
    }

    .item-content p {
        font-size: 13px;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}







