/* ============================================
   HERBIG HARO S.r.l. - Main Stylesheet
   Style inspired by marex-distribution.com
   ============================================ */

/* ============================================
   1. CSS Variables & Base Styles
   ============================================ */
:root {
    --primary-color: #1a3a5c;
    --primary-dark: #0d2137;
    --primary-light: #2a5a8c;
    --secondary-color: #d4a836;
    --accent-color: #e67e22;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

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

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

/* Fix for Bootstrap row overflow */
.container, .container-fluid {
    overflow: visible !important;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure all sections don't overflow */
section {
    overflow: visible !important;
}

/* Prevent all divs from having scroll */
div, section, article, aside, main {
    overflow: visible !important;
}

/* Hide scrollbars on all elements except html and body */
div::-webkit-scrollbar, 
section::-webkit-scrollbar,
article::-webkit-scrollbar,
aside::-webkit-scrollbar,
main::-webkit-scrollbar {
    display: none !important;
}

div, section, article, aside, main {
    scrollbar-width: none;
}

/* Keep main page scrollbar visible */
html, body {
    scrollbar-width: auto;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

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

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--white);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   3. Navigation
   ============================================ */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--primary-dark);
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand .brand-text {
    color: var(--white);
}

.navbar-brand .logo-img {
    max-height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #d4a836 !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    color: var(--white);
    font-size: 1.5rem;
}

/* Mobile Toggle Visibility Fix */
.navbar-toggler {
    background-color: var(--primary-dark);
    border-radius: 5px;
}

.nav-contact .phone-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-contact .phone-link:hover {
    color: var(--white);
}

/* Language Dropdown */
.nav-language .language-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: transparent;
    transition: var(--transition);
}

.nav-language .language-btn:hover,
.nav-language .language-btn:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.language-dropdown {
    min-width: 140px;
    padding: 0.5rem 0;
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.language-dropdown .dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.language-dropdown .dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.language-dropdown .dropdown-item.active {
    background: var(--primary-color);
    color: var(--white);
}

.language-dropdown form {
    width: 100%;
}

/* ============================================
   4. Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* For Bootstrap carousel */
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100vh;
    width: 100%;
}

/* Hero Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 5%;
    min-width: 80px;
    /* Prevent squashing on mobile */
    opacity: 0.8;
    z-index: 5;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background-size: 50%;
    transition: var(--transition);
}

.hero-section .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-section .carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--secondary-color);
    opacity: 1;
}

.hero-section .carousel-item .hero-slide {
    position: relative;
    height: 100%;
    opacity: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.3) 0%, rgba(13, 33, 55, 0.2) 100%);
}

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

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-tagline span {
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-nav {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ============================================
   5. Section Styles
   ============================================ */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.section-header.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* ============================================
   6. Services Section
   ============================================ */
.services-intro-section {
    background: var(--white);
}

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

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

.service-item {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 58, 92, 0.4) 0%, rgba(26, 58, 92, 0.95) 100%);
    transition: var(--transition);
}

.service-item:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(212, 168, 54, 0.4) 0%, rgba(26, 58, 92, 0.98) 100%);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: var(--white);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* ============================================
   7. Info Cards Section
   ============================================ */
.info-cards-section {
    background: var(--white);
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary-color);
}

.info-card-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.info-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.info-card-content {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   8. About Section
   ============================================ */
.about-section {
    background: var(--white);
}

.about-content h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-stats {
    background: var(--primary-dark);
    border-radius: 10px;
    padding: 1.5rem;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
}

/* ============================================
   9. What We Offer Section
   ============================================ */
.what-we-offer-section {
    background: var(--light-bg);
}

.offer-item {
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.offer-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.offer-content {
    color: var(--text-dark);
}

/* ============================================
   10. Brands Section
   ============================================ */
.brands-section {
    background: var(--white);
}

.brands-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.brand-item {
    flex: 0 0 auto;
    padding: 1rem;
}

.brand-item img {
    max-height: 60px;
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brands-placeholder {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* ============================================
   11. Project Scope Section
   ============================================ */
.project-scope-section {
    background: var(--primary-dark);
}

.scope-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.scope-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.scope-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.scope-item h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.scope-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   12. Regions Section
   ============================================ */
.regions-section {
    background: var(--light-bg);
}

.regions-list {
    font-size: 1.2rem;
}

.region-item {
    color: var(--primary-dark);
    font-weight: 500;
}

.region-separator {
    color: var(--secondary-color);
    margin: 0 0.5rem;
}

/* ============================================
   13. Products Section
   ============================================ */
.products-section {
    background: var(--light-bg);
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more i {
    transition: var(--transition);
}

.product-card:hover .read-more i {
    transform: translateX(5px);
}

/* ============================================
   14. Business Cooperation Section
   ============================================ */
.cooperation-section {
    background: var(--white);
}

.coop-item {
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.coop-icon {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* ============================================
   15. Contact Section
   ============================================ */
.contact-section {
    background: #0d2137;
}

.contact-info .section-title {
    color: var(--white);
}

.contact-info .section-title::after {
    background: var(--secondary-color);
}

.contact-info p {
    opacity: 0.9;
}

.contact-details .contact-item {
    opacity: 0.9;
}

.contact-details .contact-item i {
    color: var(--secondary-color);
    width: 25px;
}

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

.contact-form-wrapper .form-control {
    border: 2px solid var(--border-color);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-note {
    color: var(--text-muted);
}

.contact-form-wrapper .btn-light {
    background-color: #d4a836;
    border-color: #d4a836;
    color: var(--white);
    font-weight: 600;
}

.contact-form-wrapper .btn-light:hover {
    background-color: #c49a2f;
    border-color: #c49a2f;
    color: var(--white);
}

/* ============================================
   16. Page Header (Products pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-dark);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 92, 0.9);
}

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

.page-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item.active {
    color: var(--secondary-color);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   17. Products Page Sidebar
   ============================================ */
.products-sidebar {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    border-radius: 5px;
    transition: var(--transition);
}

.category-list li a:hover,
.category-list li.active a {
    background: var(--primary-color);
    color: var(--white);
}

/* ============================================
   18. Product Detail Page
   ============================================ */
.product-gallery .main-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.thumbnail-images .img-thumbnail {
    cursor: pointer;
    padding: 0.25rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail-images .img-thumbnail:hover,
.thumbnail-images .img-thumbnail.active {
    border-color: var(--secondary-color);
}

.product-category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-detail-title {
    font-size: 2rem;
    color: var(--primary-dark);
}

.product-short-desc {
    color: var(--text-light);
}

.product-full-desc {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.product-actions .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* ============================================
   19. Footer
   ============================================ */
.footer {
    background: var(--dark-bg);
    color: var(--white);
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-logo {
    max-height: 50px;
}

.footer-brand {
    color: var(--white);
    font-weight: 700;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

.footer-contact li {
    display: flex;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 1rem;
    transition: var(--transition);
}

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

/* ============================================
   20. Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* ============================================
   21. Cookie Notice
   ============================================ */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem 2rem;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 9999;
}

.cookie-notice.show {
    display: flex;
}

.cookie-notice p {
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   22. Buttons
   ============================================ */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

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

/* ============================================
   23. CTA Section
   ============================================ */
.cta-section {
    background: var(--dark-bg);
}

.cta-section.bg-primary {
    background: var(--primary-color) !important;
}

.cta-section p {
    font-size: 1.1rem;
}

.cta-section a {
    font-weight: 600;
}

/* ============================================
   24. Responsive Styles
   ============================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--primary-dark);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-nav {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

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

@media (max-width: 767px) {
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-item {
        min-height: 300px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .footer-top {
        padding: 2rem 0;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .page-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   25. Animation Utilities
   ============================================ */
[data-aos] {
    pointer-events: auto !important;
}