/* ============================================
   LOUVLUX - Smart Shading Solutions
   Custom Stylesheet
   ============================================ */

/* ============================================
   1. ROOT VARIABLES & BASE STYLES
   ============================================ */
:root {
    /* Primary Colors */
    --primary-color: #0d7377;
    --primary-dark: #095557;
    --primary-light: #14a085;
    
    /* Secondary Colors */
    --secondary-color: #1a1a2e;
    --secondary-light: #16213e;
    
    /* Neutral Colors */
    --dark: #222222;
    --gray-dark: #444444;
    --gray: #777777;
    --gray-light: #cccccc;
    --light: #f8f9fa;
    --white: #ffffff;
    
    /* Accent Colors */
    --accent-gold: #c9a227;
    --accent-brown: #5f4339;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-sans-alt: 'Open Sans', Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --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 24px rgba(0,0,0,0.2);
}

* {
    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(--dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   2. TOP BAR
   ============================================ */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
}

.top-bar .top-link {
    color: var(--white);
    opacity: 0.9;
}

.top-bar .top-link:hover {
    opacity: 1;
    color: var(--primary-light);
}

.top-bar .separator {
    margin: 0 15px;
    opacity: 0.5;
}

.top-bar .working-hours {
    color: var(--white);
    opacity: 0.9;
}

.top-bar .working-hours i {
    margin-right: 8px;
    color: var(--primary-light);
}

/* ============================================
   3. MAIN HEADER & NAVIGATION
   ============================================ */
.main-header {
    background-color: var(--white);
    padding: 0 20px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-top: -5px;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
    padding: 10px 18px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-quote {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 25px;
    border-radius: 0;
}

.btn-quote:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Mega Menu */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    padding: 30px;
    border: none;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    margin-top: 0 !important;
}

.mega-menu-title {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 8px;
}

.mega-menu-list li a {
    font-size: 14px;
    color: var(--gray-dark);
    transition: var(--transition-fast);
}

.mega-menu-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Regular Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.dropdown-item {
    font-size: 14px;
    padding: 8px 25px;
    color: var(--gray-dark);
}

.dropdown-item:hover {
    background-color: var(--light);
    color: var(--primary-color);
}

/* ============================================
   4. SIDEBAR NAVIGATION (Breezefree Style)
   ============================================ */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: rgba(26, 26, 46, 0.95);
    padding: 20px 0;
    border-radius: 0 8px 8px 0;
    display: none; /* Will be shown on inner pages */
}

/* Sidebar submenu that appears to the left when a category is clicked */
.sidebar-submenu {
    position: fixed;
    left: 72px; /* sits just right of the sidebar */
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    background: rgba(255,255,255,0.03);
    padding: 20px 16px;
    border-radius: 8px 0 0 8px;
    min-width: 220px;
    color: var(--white);
    display: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
}

.sidebar-submenu.active {
    display: block;
}

.sidebar-submenu h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 12px;
}

.sidebar-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-submenu li {
    margin-bottom: 10px;
}

.sidebar-submenu a {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.sidebar-submenu a:hover {
    color: var(--primary-light);
    transform: translateX(6px);
}

.sidebar-nav.active {
    display: block;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin-bottom: 5px;
}

.sidebar-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    color: var(--white);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: var(--transition-normal);
}

.sidebar-item a i {
    font-size: 24px;
    margin-bottom: 8px;
}

.sidebar-item a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.sidebar-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: block;
}

/* ============================================
   5. HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
}

.hero-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 40px 0;
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.05;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons .btn {
    border-radius: 0;
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ============================================
   Section: KoolShade
   ============================================ */
.koolshade-section {
    background: url('https://images.unsplash.com/photo-1496284045406-d3e0b918d2f6?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

/* hero container for left text and overlayed right video */
.koolshade-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-color: rgba(0,0,0,0.35);
}

.koolshade-content {
    max-width: 720px;
}

.koolshade-content .section-label {
    color: rgba(255,255,255,0.85);
    letter-spacing: 2px;
}

.koolshade-content .section-title {
    font-size: 44px;
    font-weight: 600;
    margin: 10px 0 18px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.koolshade-content .section-description {
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* Right-side video box that floats above the hero */
.koolshade-video-box {
    position: absolute;
    right: 6%;
    top: 20%;
    width: 420px;
    max-width: 44%;
    min-width: 280px;
    z-index: 5;
}

.koolshade-video-box .video-placeholder {
    width: 100%;
    height: 240px;
    background-image: url('https://images.unsplash.com/photo-1503437313881-503a91226416?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder .play-button {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.video-placeholder .play-button:hover { transform: scale(1.06); background: rgba(255,255,255,0.18); }

@media (max-width: 991px) {
    .koolshade-hero { padding: 40px 0; min-height: 420px; }
    .koolshade-content .section-title { font-size: 32px; }
    .koolshade-video-box { position: static; width: 100%; margin-top: 24px; }
    .koolshade-video-box .video-placeholder { height: 220px; }
}

.hero-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.placeholder-box {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    background-image: url('https://source.unsplash.com/800x600/?architecture,window');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: block;
    color: transparent;
}

.placeholder-box i,
.placeholder-box span {
    display: none;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-color);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
}

/* ============================================
   6. BUSINESS DESCRIPTION SECTION
   ============================================ */
.business-description {
    background-color: var(--white);
    padding: 60px 0;
}

.section-tagline {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   7. KOOLSHADE SECTION
   ============================================ */
.koolshade-section {
    background-color: var(--light);
}

.video-container {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-button:hover {
    transform: scale(1.1);
    background-color: var(--primary-light);
}

.play-button i {
    font-size: 32px;
    margin-left: 5px;
}

.koolshade-content {
    background-color: var(--white);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-description {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.feature-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

/* ============================================
   8. INDOOR SHADES SECTION
   ============================================ */
.indoor-shades-section {
    padding: 80px 0;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-image {
    height: 220px;
    overflow: hidden;
}

.product-image .placeholder-box {
    height: 100%;
    background-image: url('https://source.unsplash.com/800x600/?interior,blinds');
    background-size: cover;
    background-position: center;
    border: none;
    border-radius: 0;
    color: transparent;
}

.product-info {
    padding: 25px;
}

.product-info h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.product-info p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.product-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-link i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.product-link:hover i {
    margin-left: 10px;
}

/* ============================================
   9. OUTDOOR SHADES SECTION
   ============================================ */
.outdoor-shades-section {
    padding: 80px 0;
    background-color: var(--white);
}

.outdoor-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.outdoor-card.large {
    min-height: 480px;
}

.outdoor-card.small {
    min-height: 180px;
}

.outdoor-card:not(.large):not(.small) {
    min-height: 220px;
}

.outdoor-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.outdoor-image .placeholder-box {
    height: 100%;
    background-image: url('https://source.unsplash.com/800x600/?outdoor,patio,garden');
    background-size: cover;
    background-position: center;
    border: none;
    border-radius: 0;
}

.outdoor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
}

.outdoor-overlay h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.outdoor-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.outdoor-card.small .outdoor-overlay {
    padding: 20px;
}

.outdoor-card.small .outdoor-overlay h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

/* ============================================
   10. WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    background: var(--white);
}
/* New layout styles for image collage + green panel */
.image-collage {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.collage-top {
    height: 60%;
    background-size: cover;
    background-position: center;
}

.collage-bottom {
    display: flex;
    height: 40%;
}

.collage-small {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.collage-small + .collage-small {
    margin-left: 6px;
}

.green-panel {
    background: linear-gradient(90deg, #2d6b2c 0%, #3aa55a 100%);
    color: white;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.green-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.green-nav .btn {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
}

.green-text {
    margin-top: 12px;
    color: rgba(255,255,255,0.95);
    max-width: 520px;
}

@media (max-width: 991px) {
    .collage-bottom { gap: 6px; }
    .green-panel { padding: 30px 20px; }
}
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-box h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================
   11. CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section .lead {
    font-size: 18px;
    opacity: 0.9;
}

.cta-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.cta-form .form-control,
.cta-form .form-select {
    border-radius: 0;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    font-size: 14px;
}

.cta-form .form-control:focus,
.cta-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

.cta-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0;
}

.cta-form .btn-primary:hover {
    background-color: var(--primary-dark);
}

/* ============================================
   12. PARTNERS SECTION
   ============================================ */
.partners-section {
    padding: 60px 0;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.placeholder-logo {
    width: 100%;
    height: 60px;
    background-image: url('https://picsum.photos/400/100');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--gray-light);
    display: block;
    color: transparent;
    text-transform: none;
    letter-spacing: 0;
}

/* ============================================
   13. FOOTER
   ============================================ */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer-top {
    padding: 80px 0;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-widget p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-widget h5 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    margin-right: 12px;
    color: var(--primary-light);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* ============================================
   14. WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   15. SOCIAL SIDEBAR
   ============================================ */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-link.facebook {
    background-color: #3b5998;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
    width: 55px;
    color: var(--white);
}

/* ============================================
   16. BUTTONS
   ============================================ */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-dark {
    border-color: var(--dark);
    color: var(--dark);
}

.btn-outline-dark:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background-color: var(--light);
}

/* ============================================
   17. RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .top-bar .row > div {
        text-align: center !important;
        padding: 5px 0;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-md);
    }
    
    .mega-menu {
        position: static;
        box-shadow: none;
        padding: 15px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-slide {
        padding: 100px 0;
    }
    
    .video-container {
        min-height: 350px;
    }
    
    .koolshade-content {
        padding: 40px !important;
    }
    
    .outdoor-card.large {
        min-height: 350px;
    }
    
    .cta-section h2 {
        font-size: 30px;
    }
    
    .social-sidebar {
        display: none;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn.ms-3 {
        margin-left: 0 !important;
    }
    
    .section-tagline {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .footer-top {
        padding: 50px 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 22px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .placeholder-box {
        height: 250px;
    }
    
    .cta-form-container {
        padding: 25px;
    }
}

/* ============================================
   18. UTILITY CLASSES
   ============================================ */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.py-section {
    padding: var(--section-padding) 0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
