/*
Theme Name: Hort Fire Guard
Theme URI: https://hortfireguard.com
Author: Hort Fire Guard Team
Author URI: https://hortfireguard.com
Description: Tema profesională WordPress pentru Hort Fire Guard - Experți în protecție împotriva incendiilor, încălzire, alimentare cu apă, ventilație și sisteme de drenaj. Temă modernă, responsive, cu panou de administrare complet.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hortfireguard
Domain Path: /languages
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout, full-width-template, theme-options

Hort Fire Guard WordPress Theme © 2026
*/

/* ========================================
   HORT FIRE GUARD - WordPress Theme
   ======================================== */

/* CSS Variables - Based on Logo Colors */
:root {
    --primary: #E85A24;
    --primary-dark: #C94A1A;
    --primary-light: #FF7A4A;
    --secondary: #1A1A2E;
    --secondary-light: #2D2D44;
    --accent: #F5A623;
    --logo-orange: #E85A24;
    --logo-yellow: #F5A623;
    --logo-red: #D84315;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --black: #000000;
    
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Oswald', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

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

ul, ol {
    list-style: none;
}

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

video {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-dark {
    background: var(--secondary);
    color: var(--white);
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 10px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    width: 180px;
    height: auto;
    animation: logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(232, 90, 36, 0.6));
}

@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 20px rgba(232, 90, 36, 0.5));
    }
    50% { 
        transform: scale(1.05); 
        filter: drop-shadow(0 0 40px rgba(232, 90, 36, 0.8));
    }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: var(--transition-normal);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 15px rgba(232, 90, 36, 0.7)) drop-shadow(0 0 30px rgba(245, 166, 35, 0.4));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary);
    min-width: 200px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    padding: 0;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.nav-menu .sub-menu a:hover {
    background: var(--secondary-light);
    color: var(--primary);
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--logo-yellow));
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.phone-link i {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.95) 0%, 
        rgba(26, 26, 46, 0.85) 40%, 
        rgba(232, 90, 36, 0.4) 70%,
        rgba(245, 166, 35, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 90, 36, 0.2);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    color: var(--primary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .line {
    display: block;
}

.hero-title .accent {
    color: var(--primary);
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--logo-orange) 50%, var(--logo-yellow) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 90, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 90, 36, 0.5), 0 0 30px rgba(245, 166, 35, 0.3);
}

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

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

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

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

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 60px;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(232, 90, 36, 0.3);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.left {
    text-align: left;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.section-header.light .section-tag {
    color: var(--primary-light);
}

.section-header.light .section-tag::before {
    background: var(--primary-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.section-subtitle::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--logo-yellow));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header.light .section-subtitle::before {
    background: linear-gradient(90deg, var(--primary-light), var(--logo-yellow));
}

.section-header.light .section-subtitle {
    color: var(--gray-400);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.about-media {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-image.main {
    width: 85%;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--primary);
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.about-video {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 50%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.about-video video {
    width: 100%;
    height: auto;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 0 0 15px rgba(232, 90, 36, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-light);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--secondary-light);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--logo-orange) 50%, var(--logo-yellow) 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(232, 90, 36, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card.featured .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    font-size: 14px;
}

.service-list li i {
    color: var(--primary);
    font-size: 12px;
}

.service-card.featured .service-list li i {
    color: var(--white);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border: 2px dashed var(--primary);
}

.cta-card:hover {
    background: rgba(232, 90, 36, 0.1);
}

.cta-card .service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.cta-card .service-content p {
    margin-bottom: 25px;
}

/* Projects Section */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.project-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.project-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-video,
.project-image {
    width: 100%;
    height: 100%;
}

.project-video video,
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-item:hover .project-video video,
.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
    transition: var(--transition-normal);
}

.project-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-overlay h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.project-overlay p {
    color: var(--gray-400);
    font-size: 14px;
}

/* Why Choose Us */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.why-item {
    display: flex;
    gap: 25px;
}

.why-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
}

.why-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.why-text p {
    color: var(--gray-400);
    line-height: 1.7;
}

.why-us-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us-video video {
    width: 100%;
    height: auto;
}

.video-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    z-index: -1;
}

.decoration-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    top: 0;
    right: 0;
}

.decoration-line {
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary);
    bottom: 20px;
    left: 0;
    transform: rotate(-45deg);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

.cta-bg video,
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.85);
    z-index: -1;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 40px;
}

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

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--gray-100);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--gray-600);
    font-size: 15px;
}

.contact-details a {
    color: var(--primary);
}

.contact-details a:hover {
    text-decoration: underline;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--logo-orange));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 90, 36, 0.4);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--gray-700);
    background: var(--gray-100);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 90, 36, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.footer-logo:hover {
    filter: drop-shadow(0 0 20px rgba(232, 90, 36, 0.6));
}

.footer-logo img {
    transition: var(--transition-normal);
}

.footer-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(232, 90, 36, 0.7));
}

.footer-logo i {
    font-size: 28px;
    color: var(--primary);
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
}

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

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

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 15px;
}

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

.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: var(--gray-400);
    font-size: 15px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    background: var(--secondary-light);
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    background: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--secondary-light);
    padding: 25px 0;
}

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

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.modal-content video {
    width: 100%;
    border-radius: 12px;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--logo-orange));
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(232, 90, 36, 0.4);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--logo-orange), var(--logo-yellow));
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(232, 90, 36, 0.5);
}

/* Page Content Styles */
.page-content {
    padding: 120px 0 80px;
}

.page-content h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
}

.page-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary);
    margin: 40px 0 20px;
}

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

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.page-content ol li {
    list-style: decimal;
    margin-bottom: 10px;
}

.page-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--gray-600);
}

.page-content img {
    border-radius: 12px;
    margin: 30px 0;
}

.page-content a {
    color: var(--primary);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--primary-dark);
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray-500);
}

.blog-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: inherit;
}

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

.blog-content p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

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

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

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.pagination a {
    background: var(--gray-100);
    color: var(--secondary);
}

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

.pagination span.current {
    background: var(--primary);
    color: var(--white);
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--gray-100);
    padding: 20px 0;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--gray-600);
}

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

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

.breadcrumbs-separator {
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary);
        flex-direction: column;
        padding: 40px 0;
        transition: var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--secondary-light);
        display: none;
    }
    
    .nav-menu li.menu-item-has-children.active > .sub-menu {
        display: block;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .about-grid,
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-media {
        order: -1;
    }
    
    .about-image.main {
        width: 100%;
    }
    
    .about-video {
        position: relative;
        width: 80%;
        bottom: auto;
        right: auto;
        margin: -50px auto 0;
    }
    
    .experience-badge {
        right: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .project-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 400px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-gallery {
        grid-template-columns: 1fr;
    }
    
    .project-item.large {
        grid-column: span 1;
        height: 300px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .page-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .experience-badge {
        padding: 15px 20px;
    }
    
    .experience-badge .years {
        font-size: 32px;
    }
    
    .about-video {
        width: 90%;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Prevent animation from running again */
.animated {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Admin Bar Fix */
body.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

/* Inner Pages Header Fix - Always visible */
body.inner-page .navbar,
body:not(.home) .navbar,
body:not(.home) .navbar.scrolled {
    background: rgba(26, 26, 46, 0.98) !important;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* =====================
   IMAGE LIGHTBOX
===================== */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    font-size: 16px;
    padding: 15px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

@media screen and (max-width: 768px) {
    .lightbox-nav {
        display: none;
    }
}

/* Click cursor on images */
.project-image img,
.about-image img,
.blog-image img {
    cursor: zoom-in;
}

/* =====================
   STICKY MOBILE CTA
===================== */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 20px;
    display: flex;
    gap: 12px;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-cta-btn.phone {
    background: var(--secondary);
    color: var(--white);
}

.sticky-cta-btn.phone:hover {
    background: var(--secondary-light);
}

.sticky-cta-btn.quote {
    background: linear-gradient(135deg, var(--primary), var(--logo-orange));
    color: var(--white);
}

.sticky-cta-btn.quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 90, 36, 0.4);
}

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

/* Show only on mobile */
@media screen and (min-width: 769px) {
    .sticky-mobile-cta {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    /* Add bottom padding to body to prevent content being hidden */
    body {
        padding-bottom: 70px;
    }
    
    /* Adjust back-to-top button position */
    .back-to-top {
        bottom: 90px;
    }
    
    /* Adjust footer bottom padding */
    .footer-bottom {
        padding-bottom: 80px;
    }
}
