/* Full Option Template Styles - Based on Full Wrapped Theme */
/* ========================================
    FULL OPTION THEME - HIERARCHICAL STRUCTURE
    ========================================

    Table of Contents:
    1. Color Palette & Variables
    2. Global Styles & Body Defaults
    3. Header Styles
       3.1 Header Top Bar
       3.2 Header Main
       3.3 Header Fixed
       3.4 Navigation
       3.5 Mobile Menu & Offcanvas
    4. Footer Styles
       4.1 Footer Main
       4.2 Footer Contact
       4.3 Footer Navigation
       4.4 Footer Copyright
       4.5 Back to Top
    5. Animations & Effects
    6. Custom Scrollbar
    7. Responsive Design
    ======================================== */

/* ========================================
    1. COLOR PALETTE & VARIABLES - FULL OPTION THEME
    ======================================== */

:root {
    /* Primary Colors - Earthy Dark Theme */
    --primary: #ab815f;
    --primary-dark: #8a6a4d;
    --primary-light: #c49775;
    --primary-hover: #8a6a4d;

    /* Secondary Colors - Deep Darks */
    --secondary: #191514;
    --secondary-light: #221405;
    --secondary-dark: #111111;

    /* Accent Colors - Rich Browns */
    --accent: #444444;
    --accent-light: #555555;
    --accent-dark: var(--accent-dark)333;
    --accent-hover: #666666;

    /* Dark Variations */
    --dark-1: #191514;
    --dark-2: #221405;
    --dark-3: #111111;
    --dark-4: #222222;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --gray-900: #000000;

    /* RGB Values for rgba() functions */
    --white-rgb: 255, 255, 255;
    --black-rgb: 0, 0, 0;
    --primary-rgb: 171, 129, 95;
    --secondary-rgb: 25, 21, 20;
    --accent-rgb: 136, 137, 132;
    --accent-dark-rgb: 68, 68, 68;
    --dark-4-rgb: 34, 34, 34;
    --blue-rgb: 0, 124, 186;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Cardo', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(var(--black-rgb), 0.1);
    --shadow-md: 0 4px 12px rgba(var(--black-rgb), 0.15);
    --shadow-lg: 0 8px 24px rgba(var(--black-rgb), 0.2);
    --shadow-xl: 0 16px 48px rgba(var(--black-rgb), 0.25);

    /* Transitions */
    --transition-fast: all 0.3s ease;
    --transition-normal: all 0.4s ease;
    --transition-slow: all 0.6s ease;

    /* Additional Theme Colors */
    --blue: #007cbc;
    --blue-dark: #005a87;
    --blue-darker: #004060;
    --orange: #ff6600;
    --gray-medium: #888588;

    /* Social Media Colors */
    --facebook-blue: #1877f2;
    --twitter-blue: #1da1f2;
    --linkedin-blue: #0077b5;
    --whatsapp-green: #25d366;
    --pinterest-red: #e60023;
    --instagram-pink: #e4405f;
    --youtube-red: #FF0000;
    --tiktok-black: #000000;
}

/* ========================================
    2. GLOBAL STYLES & BODY DEFAULTS
    ======================================== */

/* Global Dark Theme Body Styles */

body{
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-3) 50%, var(--secondary) 100%);
	color: var(--white);
}

/* Links in content */
body a {
    color: var(--white);
    transition: color 0.3s ease;
}

body a:hover {
    color: var(--primary);
}


/* Buttons general */
body .btn {
    background: var(--accent);
    color: var(--primary);
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

body .btn:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--primary);
}

/* Form elements */
body input, body textarea, body select {
    background: var(--gray-50);
    color: var(--primary);
    border: 1px solid var(--accent);
    font-family: var(--font-primary);
}

body input:focus, body textarea:focus, body select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.2);
}


/* Top Bar - Contact & Social */

/*.header-full-option{
    background: rgba(var(--secondary-rgb), 0.98);
}*/

.header-full-option .header-top-bar{
    padding: 15px 0;
}

.header-full-option .coords {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 16px;
}

.header-full-option .coords .phone a {
    color: var(--primary) !important;
    font-size: 16px;
    font-weight: 500;
}

.header-full-option .coords .phone a:hover i,
.header-full-option .coords .address:hover i {
    background: var(--accent);
    color: var(--white) !important;
}

.header-full-option .coords .address,
.header-full-option .coords .phone,
.header-full-option .coords .email {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary) !important;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.header-full-option .coords .address:hover,
.header-full-option .coords .phone:hover,
.header-full-option .coords .email:hover {
    color: var(--accent);
}

.header-full-option .coords .address i,
.header-full-option .coords .phone i,
.header-full-option .coords .email i {
    background: linear-gradient(135deg, rgba(var(--dark-4-rgb), 0.6) 0%, var(--accent) 100%);
    border-radius: 50%;
    color: var(--white) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    height: 40px;
    min-width: 40px;
    width: 40px;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.header-full-option .coords .address:hover i,
.header-full-option .coords .phone:hover i,
.header-full-option .coords .email:hover i {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}


.header-full-option .coords .address:hover i,
.header-full-option .coords .phone:hover i,
.header-full-option .coords .email:hover i {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white) !important;
}

.header-full-option .coords .address i,
.header-full-option .coords .phone i,
.header-full-option .coords .email i {
    position: relative;
    z-index: 1;
}

.header-full-option .coords .phone a,
.header-full-option .coords .email a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.header-full-option .coords .phone a:hover,
.header-full-option .coords .email a:hover {
    color: var(--accent);
}

.header-full-option .social-link {
    background: linear-gradient(135deg, rgba(var(--dark-4-rgb), 0.6) 0%, var(--accent) 100%);
    min-width: 35px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display:flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: var(--white) !important;
    text-decoration: none;
}

.header-full-option .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--gray-50) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-full-option .social-link:hover::before {
    opacity: 1;
}

.header-full-option .social-link:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.header-full-option .social-link i {
    color: var(--white) !important;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.header-full-option .social-link:hover i {
    color: var(--secondary-dark);
    transform: scale(1.1);
}

/* ========================================
     3.2 Header Main
     ======================================== */

.header-full-option .header-main {
    border: 1px solid rgba(var(--accent-rgb),.5);
    border-left: none;
    border-right: none;
    position: relative;
    padding: 20px 0;
}

.header-full-option .logo-container img {
    position: relative;
    margin-top: -90px;
    max-width: 100%;
    width: 100%;
    transition: var(--transition-fast);
}

.header-full-option .logo-container img:hover {
    transform: scale(1.05);
}

/* ========================================
     3.4 Navigation
     ======================================== */

.header-full-option .main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.header-full-option .main-navigation li {
    position: relative;
}

.header-full-option .main-navigation a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    border-radius: 60px;
    background: linear-gradient(135deg, rgba(var(--dark-4-rgb), 1) 0%, rgba(var(--accent-rgb), 1) 100%);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    font-family: var(--font-primary);
    text-transform: uppercase;
    overflow: hidden;
}

.header-full-option .main-navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.2), transparent);
    transition: left 0.6s ease;
}

.header-full-option .main-navigation a:hover::before,
.header-full-option .main-navigation a:focus::before {
    left: 100%;
}

.header-full-option .main-navigation a:hover,
.header-full-option .main-navigation a:focus {
    color: var(--white);
    
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 15px rgba(var(--primary-rgb), 0.2);
    transform: translateY(-2px) scale(1.02);
    text-shadow: 0 0 8px rgba(var(--primary-rgb), 0.4);
}

.header-full-option .main-navigation a.active {
    color: var(--primary);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.6) 0%, rgba(var(--accent-rgb), 0.4) 100%);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(var(--primary-rgb), 0.3);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: var(--shadow-lg), 0 0 20px rgba(var(--primary-rgb), 0.3);
    }
    50% {
        box-shadow: var(--shadow-lg), 0 0 30px rgba(var(--primary-rgb), 0.6);
    }
}

/* Dropdown Menu Indicator */
.header-full-option .main-navigation .menu-item-has-children > a::after {
    content: '▾';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--primary-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(var(--black-rgb), 0.3);
}

.header-full-option .main-navigation .menu-item-has-children > a {
    padding-right: 2.5rem;
}

.header-full-option .main-navigation .menu-item-has-children:hover > a::after {
    color: var(--primary);
    transform: translateY(-50%) rotate(180deg);
}

.header-full-option .main-navigation .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-3) 100%);
    box-shadow: 0 12px 40px rgba(var(--black-rgb), 0.25);
    border-radius: var(--radius-xl);
    min-width: 320px;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: var(--spacing-md) 0;
    border: 2px solid var(--accent);
    backdrop-filter: blur(20px);
    overflow: hidden;
    flex-direction: column;
    gap: 10px;
}

.header-full-option .main-navigation .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header-full-option .main-navigation .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-3) 100%);
    border: 2px solid var(--accent);
    border-bottom: none;
    border-right: none;
    rotate: 45deg;
    backdrop-filter: blur(20px);
}

.header-full-option .main-navigation .sub-menu li {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 100%;
    width: 100%;
}

.header-full-option .main-navigation .sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
}

.header-full-option .main-navigation .sub-menu a {
    background: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-decoration: none;
    position: relative;
    font-family: var(--font-primary);
    text-shadow: 0 1px 2px rgba(var(--black-rgb), 0.3);
}

.header-full-option .main-navigation .sub-menu a::before {
    content: '';
    display: none;
}


.header-full-option .main-navigation .sub-menu a:hover,
.header-full-option .main-navigation .sub-menu a:focus {
    color: var(--primary);
    background: none;
    border: none;
    box-shadow: none;
    transform: translateY(0);
}

/* Header Actions */
.header-full-option .header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    justify-content: flex-end;
}

/* ========================================
     3.5 Mobile Menu & Offcanvas
     ======================================== */

.header-full-option .mobile-menu-toggle .menu-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: var(--dark-3);
    border: 2px solid var(--accent);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 6px;
    transition: var(--transition-fast);
    position: relative;
}

.header-full-option .mobile-menu-toggle .menu-toggle-btn:hover {
    border-color: var(--primary);
    background: rgba(var(--blue-rgb), 0.05);
    transform: scale(1.05);
}

.header-full-option .hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
    transform-origin: center;
    border-radius: 1px;
}

.header-full-option .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary);
}

.header-full-option .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header-full-option .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary);
}

/* Quote Button */
.header-full-option .btn-quote-link {
    background: var(--primary);
    color: var(--dark-1);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.header-full-option .btn-quote-link:hover,
.header-full-option .btn-quote-link:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--dark-1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
     3.3 Header Fixed
     ======================================== */

.header-full-option .header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(var(--secondary-rgb), 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 4px 30px rgba(var(--black-rgb), 0.4);
    transform: translateY(-120%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    z-index: 1001;
    padding:15px 0;
    opacity: 0;
    visibility: hidden;
}

.header-full-option .header-fixed.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Header Main - Smooth Hide Animation */
.header-full-option .header-main {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.header-full-option .header-main.hide {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.header-full-option .header-fixed .header-main {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: var(--spacing-sm) 0;
}

.header-full-option .header-fixed .logo-container img {
    max-height: 40px;
    transition: all 0.3s ease;
}

.header-full-option .header-fixed .main-navigation ul {
    gap: 1rem;
}

.header-full-option .header-fixed .main-navigation a {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.header-full-option .header-fixed .main-navigation a {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
    font-weight: 600;
}

.header-full-option .header-fixed .header-actions {
    gap: var(--spacing-lg);
}

.header-full-option .header-fixed .mobile-menu-toggle .menu-toggle-btn {
    width: 36px;
    height: 36px;
    padding: 6px;
}

.header-full-option .header-fixed .btn-quote-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* TOP SECTION: Contact Info + Social Networks */
.header-full-option .header-top-section {
    background: rgba(var(--secondary-rgb), 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.3);
}

.header-full-option .header-contact-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.header-full-option .header-contact-info a {
    color: var(--white) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-full-option .header-contact-info a:hover {
    color: var(--primary);
}

.header-full-option .header-social-networks {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-md);
}

.header-full-option .header-social-networks .social-link-top {
    color: var(--white) !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.header-full-option .header-social-networks .social-link-top:hover {
    color: var(--primary);
    background: rgba(var(--accent-rgb), 0.2);
    transform: translateY(-2px);
}

/* BOTTOM SECTION: Logo + Navigation + Actions */
.header-full-option .header-bottom-section {
    background: transparent !important;
    padding: var(--spacing-lg) 0;
    position: relative;
}

.header-full-option .header-logo-section {
    display: flex;
    align-items: center;
}

.header-full-option .header-logo-section img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.header-full-option .header-logo-section:hover img {
    transform: scale(1.05);
}



/* MOBILE MENU STYLES */

/* Menu Active States Enhancement */
.header-full-option .header-navigation-section .main-navigation .current-menu-item > a,
.header-full-option .header-navigation-section .main-navigation .current-menu-parent > a,
.header-full-option .header-navigation-section .main-navigation .current-menu-ancestor > a {
    color: var(--primary);
    background: linear-gradient(135deg,
        var(--accent) 0%,
        var(--secondary) 100%);
    box-shadow: var(--shadow-md);
}

.header-full-option .header-navigation-section .main-navigation .current-menu-item > a::before,
.header-full-option .header-navigation-section .main-navigation .current-menu-parent > a::before,
.header-full-option .header-navigation-section .main-navigation .current-menu-ancestor > a::before {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--white));
}

/* Menu Hover State Variations */
.header-full-option .header-navigation-section .main-navigation a:hover {
    animation: menuHoverPulse 0.6s ease;
}

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

/* Submenu Close Animation */
.header-full-option .header-navigation-section .main-navigation .menu-item-has-children:not(:hover) .sub-menu {
    animation: submenuClose 0.3s ease;
}

@keyframes submenuClose {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Menu Performance Optimizations */
.header-full-option .header-navigation-section .main-navigation {
    will-change: transform;
}

.header-full-option .header-navigation-section .main-navigation .sub-menu {
    will-change: transform, opacity;
}

.header-full-option .header-actions-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-lg);
}

.header-full-option .btn-quote-link {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    text-decoration: none;
    padding:5px 15px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.header-full-option .btn-quote-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.header-full-option .btn-quote-link:hover::before {
    left: 100%;
}

.header-full-option .btn-quote-link:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Top Bar - Contact & Social - TRANSPARENT */

.header-full-option .coords {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.header-full-option .coords a {
    color: var(--primary) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.header-full-option .coords a:hover {
    color: var(--primary);
}

.header-full-option .social-networks {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}


/* Header Actions */
.header-full-option .header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.header-full-option .btn-quote {
    background: var(--primary);
    color: var(--dark-1);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-primary);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.header-full-option .btn-quote:hover,
.header-full-option .btn-quote:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--dark-1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);

    box-shadow: var(--shadow-xl);
}

.header-full-option .btn-quote:active {
    transform: translateY(0) scale(1.02);
}

/* Mobile Menu Toggle - ENHANCED */
.header-full-option .mobile-menu-toggle .menu-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 100%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,
        rgba(var(--accent-dark-rgb), 0.1) 0%,
        rgba(var(--accent-rgb), 0.1) 100%);
    border: 2px solid var(--accent);
    border-radius:100%;
    cursor: pointer;
    padding: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: var(--shadow-sm);
}

.header-full-option .mobile-menu-toggle .menu-toggle-btn:hover {
    border-color: var(--secondary);
    background: linear-gradient(135deg,
        rgba(var(--accent-rgb), 0.2) 0%,
        rgba(var(--accent-dark-rgb), 0.3) 100%);
    transform: scale(1.08) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.header-full-option .hamburger-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        var(--white) 0%,
        var(--accent) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(var(--black-rgb), 0.2);
}

.header-full-option .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--accent);
}

.header-full-option .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header-full-option .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--secondary);
}


/* ========================================
     5. ANIMATIONS & EFFECTS
     ======================================== */

.header-full-option .header-top-section {
    animation: slideDownFade 0.8s ease both;
}

.header-full-option .header-bottom-section {
    animation: slideUpFade 0.8s ease both 0.2s;
}

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

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

.header-fixed {
    animation: slideDownBounce 0.6s ease both;
}

@keyframes slideDownBounce {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    60% {
        opacity: 1;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for better interactivity */
.header-full-option .header-contact-info a:hover,
.header-full-option .header-social-networks .social-link-top:hover {
    animation: pulse 0.6s ease;
}

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

.header-full-option .header-actions {
    justify-content: flex-end;
}


.offcanvas {
    position: fixed;
    top: 0;
    right: -320px; /* Légèrement plus large que max-width pour l'effet slide */
    width: 320px;
    max-width:320px;
    height: 100vh;
    background: linear-gradient(145deg,
        rgba(var(--secondary-rgb), 0.98) 0%,
        rgba(var(--dark-4-rgb), 0.95) 50%,
        rgba(var(--secondary-rgb), 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: -10px 0 40px rgba(var(--black-rgb), 0.4);
    transition: right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease 0.3s;
    z-index: 1002;
    border-left: 2px solid var(--accent);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    transform: translateX(0);
}

.offcanvas::-webkit-scrollbar {
    width: 4px;
}

.offcanvas::-webkit-scrollbar-track {
    background: transparent;
}

.offcanvas::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

.offcanvas::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.offcanvas.active {
    right: 0;
    left:inherit;
    box-shadow: -15px 0 60px rgba(var(--black-rgb), 0.5);
    transform: translateX(-5px); /* Petit effet de poussée vers la gauche */
}

.offcanvas-content {
    padding: var(--spacing-xxl) 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--primary);
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.offcanvas.active .offcanvas-content {
    opacity: 1;
    transform: translateX(0);
}

.offcanvas-close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.offcanvas-close:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.offcanvas .logo {
    margin-bottom: var(--spacing-xxl);
    text-align: center;
    padding: var(--spacing-xl);
    position: relative;
}

.offcanvas .logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 1px;
}

.offcanvas .logo img {
    border-radius: 100%;
    max-width: 150px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

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


.offcanvas-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.offcanvas-nav li {
    position: relative;
    overflow: hidden;
}

.offcanvas-nav a {
    display: block;
    padding: 10px 20px;
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
    position: relative;
    border: 1px solid transparent;
    background: linear-gradient(135deg,
        rgba(var(--accent-dark-rgb), 0.1) 0%,
        rgba(var(--dark-4-rgb), 0.05) 100%);
}

.offcanvas-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(var(--accent-rgb), 0.2),
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.offcanvas-nav a:hover::before {
    left: 100%;
}

.offcanvas-nav a:hover {
    color: var(--primary);
    background: linear-gradient(135deg,
        rgba(var(--accent-dark-rgb), 0.3) 0%,
        rgba(var(--accent-rgb), 0.2) 100%);
    transform: translateX(8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.offcanvas-nav a span {
    position: relative;
    z-index: 2;
}

.offcanvas-contact {
    padding: 15px;
    background: linear-gradient(135deg,
        rgba(var(--dark-4-rgb), 0.4) 0%,
        rgba(var(--secondary-rgb), 0.3) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.offcanvas-contact .coords {
    gap: var(--spacing-lg) !important;
    position: relative;
    align-items: start;
    z-index: 1;
}

/* Offcanvas coord icons - same style as header but adapted size */
.offcanvas .coords .address i,
.offcanvas .coords .phone i,
.offcanvas .coords .email i,
.offcanvas .coords .hours i {
    background: linear-gradient(135deg, rgba(var(--dark-4-rgb), 0.6) 0%, var(--accent) 100%);
    border-radius: 50%;
    color: var(--white) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    height: 45px;
    min-width: 45px;
    width: 45px;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.offcanvas .coords .address:hover i,
.offcanvas .coords .phone:hover i,
.offcanvas .coords .email:hover i,
.offcanvas .coords .hours:hover i {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}



.offcanvas .coords .address:hover i,
.offcanvas .coords .phone:hover i,
.offcanvas .coords .email:hover i,
.offcanvas .coords .hours:hover i {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white) !important;
}

.offcanvas .coords .address i,
.offcanvas .coords .phone i,
.offcanvas .coords .email i,
.offcanvas .coords .hours i {
    position: relative;
    z-index: 1;
}

.offcanvas-social {
    padding: 15px 0;
    border-top: 1px solid rgba(var(--accent-rgb), 0.3);
    text-align: center;
}

.offcanvas-social .social-link {
    background: linear-gradient(135deg, rgba(var(--dark-4-rgb), 0.6) 0%, var(--accent) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--accent);
    margin: 0 5px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: var(--white) !important;
}

.offcanvas-social .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--gray-50) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offcanvas-social .social-link:hover::before {
    opacity: 1;
}

.offcanvas-social .social-link:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.offcanvas-social .social-link i {
    color: var(--white) !important;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-rgb), 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Full Option specific overlay */
.offcanvas-overlay-full-option {
    z-index: 1000;
}

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


/* ========================================
     4. POST STYLES
     ========================================
     ======================================== */
main .single-post-wrapper, main .post-carousel-row{
	background:transparent!important;
	padding:40px 0 !important;
}
main .post-sidebar-column h3,main .similar-articles-carousel h3{
	color:var(--taupe)
}
.recent-text h4 a,.similar-item h4 a{
	color:var(--white);
}


/* ========================================
     4. FOOTER STYLES
     ========================================

     4.1 Footer Main
     ======================================== */

.site-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    margin-top: 4rem;
}

.footer-main {
    padding: 3rem 0 2rem;
}

.footer-content .row {
    --bs-gutter-x: 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo img {
    max-height: 45px;
    margin-bottom: 1rem;
}

.footer-description p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact .contact-phone,
.footer-contact .contact-email,
.footer-contact .contact-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--white) !important;
    width: 16px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Links */
.footer-links,
.footer-services {
    margin-bottom: 2rem;
}

.footer-links h4,
.footer-services h4,
.footer-social h4 {
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-light);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--blue);
    transform: translateX(3px);
}

/* Footer Social */
.footer-social {
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links .social-link:hover {
    background: var(--blue);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--blue-rgb), 0.3);
}

/* Copyright */
.footer-copyright {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 1.5rem 0;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-left p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.copyright-left a {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 600;
}

.copyright-left a:hover {
    color: var(--blue);
}

.copyright-right .copyright-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.copyright-right .copyright-nav a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.copyright-right .copyright-nav a:hover {
    color: var(--blue);
}

.footer-full-option .footer-main {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-3) 50%, var(--secondary) 100%);
    border-top: 1px solid rgba(var(--accent-rgb), 0.1);
}

.footer-full-option .footer-grid {
    position: relative;
}

.footer-full-option .footer-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer-full-option .footer-title {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    font-family: var(--font-primary);
    text-shadow: 0 1px 2px rgba(var(--black-rgb), 0.3);
}

.footer-full-option .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-full-option .footer-nav li {
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.footer-full-option .footer-nav a {
    color: var(--white) !important;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-weight: 500;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.footer-full-option .footer-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-full-option .footer-nav a:hover::before, .footer-full-option .footer-nav .current_page_item a::before {
    left: 100%;
}

.footer-full-option .footer-nav a:hover,.footer-full-option .footer-nav  .current_page_item a {
    color: var(--primary);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.3) 0%, rgba(var(--accent-dark-rgb), 0.2) 100%);
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(var(--black-rgb), 0.2);
    border-left: 3px solid var(--primary);
}

/* ========================================
     4.4 Footer Copyright
     ======================================== */

.footer-full-option .footer-copyright {
    border-top: 2px solid var(--accent);
    padding: var(--spacing-md) 0;
    background: linear-gradient(135deg, var(--dark-3) 0%, var(--secondary) 100%);
    box-shadow: inset 0 1px 0 rgba(var(--white-rgb), 0.05);
}

.footer-full-option .copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.footer-full-option .copyright-text {
    margin: 0;
    color: var(--white) !important;
    font-family: var(--font-primary);
    text-shadow: 0 1px 2px rgba(var(--black-rgb), 0.5);
}

.footer-full-option .copyright-text p{
    margin: 0;
}

.footer-full-option .copyright-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-full-option .copyright-text a:hover {
    color: var(--primary-light);
}

.footer-full-option .copyright-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-lg);
}

.footer-full-option .copyright-nav a {
    color: var(--white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    text-shadow: 0 1px 2px rgba(var(--black-rgb), 0.5);
}

.footer-full-option .copyright-nav a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
}

.footer-full-option .copyright-logo {
    margin-left: auto;
}

.footer-full-option .copyright-logo img {
    height:auto;
    max-width: 150px;
    width: 100%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-full-option .copyright-logo:hover img {
    opacity: 1;
}

/* ========================================
     4.5 Back to Top
     ======================================== */

.footer-full-option .back-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: var(--shadow-xl);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.footer-full-option .back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-full-option .back-to-top:hover::before {
    opacity: 1;
}

.footer-full-option .back-to-top:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-color: var(--secondary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.3);
}

.footer-full-option .back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.footer-full-option .back-to-top.visible {
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Additional Dark Theme Enhancements */
.footer-full-option .brand-description {
    color: var(--white) !important;
    font-family: var(--font-secondary);
    text-shadow: 0 1px 2px rgba(var(--black-rgb), 0.5);
}

.footer-full-option .footer-brand {
    background: rgba(var(--dark-4-rgb), 0.2);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-full-option .footer-brand .brand-logo img{
    border-radius: 100%;
    max-width: 150px;
}

.footer-full-option .contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(var(--dark-4-rgb), 0.4) 0%, rgba(var(--secondary-rgb), 0.3) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(var(--white-rgb), 0.05);
}

.footer-full-option .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-full-option .contact-item:hover::before {
    opacity: 1;
}

.footer-full-option .contact-item:hover {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.4) 0%, rgba(var(--accent-dark-rgb), 0.3) 100%);
    transform: translateX(5px);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(var(--white-rgb), 0.1);
    border-color: var(--accent);
}



.footer-full-option .contact-icon {
    background: linear-gradient(135deg, rgba(var(--dark-4-rgb), 0.6) 0%, var(--accent) 100%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--white) !important;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-full-option .contact-item:hover .contact-icon {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-full-option .contact-content {
    color: var(--white) !important;
    font-family: var(--font-primary);
    flex: 1;
}

.footer-full-option .contact-content a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    word-break: break-all;
}

.footer-full-option .contact-content a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.footer-full-option .hours-list span {
    display: block;
    margin-bottom: 2px;
    font-size: 0.9rem;
}
.footer-full-option .brand-social{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.footer-full-option .brand-social .social-link {
    background: linear-gradient(135deg, rgba(var(--dark-4-rgb), 0.6) 0%, var(--accent) 100%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: var(--white) !important;
}

.footer-full-option .brand-social .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--gray-50) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-full-option .brand-social .social-link:hover::before {
    opacity: 1;
}

.footer-full-option .brand-social .social-link:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-full-option .brand-social .social-link i {
    color: var(--white) !important;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-full-option .brand-social .social-link:hover i {
    transform: scale(1.1);
}

/* ========================================
     6. RESPONSIVE DESIGN
     ======================================== */

/* Header Responsive */

/* Footer Responsive */

/* Other Responsive Rules */
.footer-full-option .footer-grid > div {
    animation-delay: 0s !important;
}

/* ========================================
     7. CUSTOM SCROLLBAR
     ======================================== */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(var(--dark-4-rgb), 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
        var(--accent) 0%,
        var(--secondary) 100%);
    border-radius: 3px;
    border: 1px solid rgba(var(--dark-4-rgb), 0.2);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
        var(--secondary) 0%,
        var(--accent) 100%);
    transform: scaleY(1.2);
}

::-webkit-scrollbar-corner {
    background: rgba(var(--dark-4-rgb), 0.1);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(var(--dark-4-rgb), 0.1);
}



/* Footer Animations */
.footer-full-option .footer-grid > div {
    animation: fadeInUp 0.8s ease both;
}

.footer-full-option .footer-grid > div:nth-child(1) { animation-delay: 0.1s; }
.footer-full-option .footer-grid > div:nth-child(2) { animation-delay: 0.2s; }
.footer-full-option .footer-grid > div:nth-child(3) { animation-delay: 0.3s; }
.footer-full-option .footer-grid > div:nth-child(4) { animation-delay: 0.4s; }

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

.footer-full-option .brand-logo,
.footer-full-option .footer-title {
    animation: slideInLeft 0.6s ease both;
}


/* Header Fixed Animation */
.header-full-option .header-fixed.active {
    animation: slideDownBounceActive 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.header-full-option .header-fixed .logo-fixe img{
    border-radius: 100%;
    height: auto;
    max-width: 100px;
    width: 100%;
}

@keyframes slideDownBounceActive {
    0% {
        opacity: 0;
        transform: translateY(-120%);
    }
    60% {
        opacity: 1;
        transform: translateY(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



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

/* Responsive Design */

.footer-full-option .footer-grid > div {
    animation-delay: 0s !important;
}

/* ========================================
     7. RESPONSIVE DESIGN
     ======================================== */

 @media screen and (max-width:1199px){

    .header-full-option .main-navigation ul{
        gap: 10px;
    }
    .header-full-option .main-navigation a{
        font-size: 14px;
    }
    .header-full-option .btn-quote-link{
        font-size: 14px;
    }

 }    

@media (max-width: 991px) {
    .header-full-option .header-top-bar  .coords .address{
        display: none!important;
    }
    .header-full-option .header-navigation-section {
        display: none;
    }

    .header-full-option .main-navigation ul {
        gap: 1.5rem;
    }

    .header-full-option .main-navigation a {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }
    
}

@media (max-width: 767px) {  
    .header-full-option .main-navigation {
        display: none;
    }

    .header-full-option .btn-quote-link {
        display: none;
    }

    .header-full-option .header-fixed .main-navigation {
        display: none;
    }

    .header-main {
        padding: 0.75rem 0;
    }

    .header-row {
        flex-direction: column;
        gap: 1rem;
        min-height: 50px;
    }

    .header-full-option .logo-container img {
        margin-top: 0;
        max-width: 100px;
    }

    .header-nav .main-navigation ul {
        gap: 1rem;
    }

    .header-nav .main-navigation a {
        font-size: 0.9rem;
        padding: 0.4rem 0.5rem;
    }
    

    .header-cta .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .header-full-option .header-top-section {
        display: none;
    }

    .header-full-option .header-bottom-section {
        padding: var(--spacing-md) 0;
    }

    .header-full-option .header-logo-section img {
        max-height: 40px;
    }

    .header-full-option .header-actions-section {
        justify-content: flex-end;
    }

    .header-fixed .header-fixed-logo img {
        max-height: 35px;
    }

    .header-full-option .btn-quote {
        display: none;
    }

    /* Offcanvas */
    .offcanvas {
        width: 300px;
    }

    /* Footer */
    .footer-full-option .footer-grid {
        --bs-gutter-x: 1rem;
    }

    .footer-content .row {
        --bs-gutter-x: 1rem;
    }

    .footer-content .row > div {
        margin-bottom: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-full-option .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-full-option .contact-item {
        justify-content: center;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .footer-full-option .contact-icon {
        align-self: center;
    }

    .footer-full-option .copyright-wrapper {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    .footer-full-option .copyright-logo{
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    /* Header */
    .header-full-option .header-top-bar .coords a span{
        display: none;
    }
    .header-full-option .main-navigation a {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }

    .header-nav .main-navigation ul {
        gap: 0.75rem;
        justify-content: center;
    }

    .header-nav .main-navigation a {
        font-size: 0.85rem;
    }

    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .header-full-option .header-actions-section {
        justify-content: flex-end;
        gap: var(--spacing-md);
    }

    .header-fixed .header-fixed-navigation {
        display: none;
    }

    .header-full-option .header-bottom-section {
        padding: var(--spacing-sm) 0;
    }

    .header-full-option .header-logo-section img {
        max-height: 35px;
    }

    /* Footer */
    .footer-full-option .footer-grid > div {
        margin-bottom: 2rem;
        text-align: center;
    }
}