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

:root {
    --primary: #0077b6;
    --secondary: #00b4d8;
    --accent: #90e0ef;
    --dark: #1a1a1a;
    --light: #eaf6fc;
    --white: #ffffff;
    --gray: #6c757d;
    --text: #333333;
    --header-height: 90px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-family: 'VTKS Escape', sans-serif;
    font-weight: 400;
    color: #0e1221;
    margin: 0px;
    transition: all 500ms ease;
}

h3, .h3 {
    font-size: 1.75rem;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.bg-light {
    background-color: #f5f7fa;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header - Single Row 3 Columns */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: var(--header-height);
}

.main-header .container {
    height: 100%;
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    height: 100%;
}

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

.logo img {
    height: 100px;
    width: auto;
}

/* Navigation - Center */
.main-menu {
    display: flex;
    justify-content: center;
}

.menu-list {
    display: flex;
    gap: 5px;
    align-items: center;
}

.menu-list li a {
    display: block;
    padding: 25px 14px;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
}

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

.menu-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-list li a:hover::after,
.menu-list li a.active::after {
    transform: scaleX(1);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px 0;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu li a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background: var(--light);
    color: var(--primary);
}

.submenu li a::after {
    display: none;
}

/* Call Button - Right */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    color: var(--white);
}

.call-btn i {
    font-size: 16px;
}

.callback-trigger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.callback-trigger-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.callback-trigger-btn i {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .callback-trigger-btn {
        display: none;
    }
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 80px 30px 30px;
    transition: left 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
}

.mobile-menu .mobile-logo {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-menu .mobile-logo img {
    height: 100px;
}

.mobile-menu .menu-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.mobile-menu .menu-list li {
    width: 100%;
}

.mobile-menu .menu-list li a:not(.submenu li a) {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu .dropdown {
    width: 100%;
}

.mobile-menu .dropdown > a {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu .submenu {
    position: relative;
    box-shadow: none;
    background: #f8f9fa;
    margin-top: 10px;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
    padding: 0 15px;
    width: calc(100% - 30px);
    box-sizing: border-box;
}

.mobile-menu .submenu.show {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    padding: 15px;
}

.mobile-menu .submenu li {
    width: 100%;
}

.mobile-menu .submenu li a {
    padding: 12px 10px;
    font-size: 14px;
    border: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu .submenu li:last-child a {
    border-bottom: none;
}

.mobile-menu .mobile-cta {
    margin-top: 30px;
    text-align: center;
}

.mobile-menu .mobile-cta .call-btn {
    width: 100%;
    justify-content: center;
}

/* Main Slider */
.main-slider {
    padding-top: var(--header-height);
    position: relative;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    min-height: 85vh;
    overflow: hidden;
}

.pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.main-slider-carousel {
    position: relative;
    z-index: 2;
}

.slide {
    display: none;
    padding: 40px 0;
}

.slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

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

.row.clearfix {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.content-column {
    order: 1;
}

.image-column {
    order: 2;
    text-align: center;
}

.content-box {
    padding: 20px;
}

.content-box .top-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.content-box h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 15px;
}

.content-box .text {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
}

.image-box {
    position: relative;
    display: inline-block;
}

.bg-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

.image-box .image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

#starshine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.shine {
    position: absolute;
    width: 100px;
    height: 100px;
}

.shine img {
    width: 100%;
    height: 100%;
    animation: sparkle 2s ease-in-out infinite;
}

.shine-1 {
    top: 15%;
    right: 25%;
    animation-delay: 0s;
}

.shine-2 {
    top: 40%;
    left: 45%;
    animation-delay: 0.5s;
}

.shine-3 {
    bottom: 20%;
    right: 35%;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.btn-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-nav button i {
    font-size: 18px;
}

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

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .main-slider {
        min-height: auto;
        padding-top: var(--header-height);
    }

    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .content-column {
        order: 2;
        text-align: center;
    }

    .image-column {
        order: 1;
    }

    .content-box h1 {
        font-size: 32px;
    }

    .content-box .text {
        font-size: 16px;
    }

    .btn-box {
        justify-content: center;
    }

    .slide {
        padding: 20px 0 80px;
    }

    .slider-nav {
        top: auto;
        bottom: 70px;
        transform: none;
    }

    .slider-nav button {
        width: 40px;
        height: 40px;
    }

    .shine {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .content-box h1 {
        font-size: 26px;
    }

    .content-box .top-text {
        font-size: 11px;
    }

    .btn-box {
        flex-direction: column;
        align-items: center;
    }

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

    .shine {
        width: 40px;
        height: 40px;
    }
}

/* Section Titles */
.sec-title {
    margin-bottom: 40px;
    text-align: center;
}

.sec-title h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.sec-title h3 {
    color: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 15px;
}

/* Feature Section */
.feature-section {
    padding: 80px 0;
    background: #D5E6F7;
}

.feature-section .auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.feature-section .inner-content {
    margin-top: 40px;
}

.feature-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.feature-block {
    padding: 0 15px;
    margin-bottom: 30px;
}

.feature-block-one {
    height: 100%;
}

.feature-block-one .inner-box {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid transparent;
}

.feature-block-one .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-bottom-color: var(--primary);
}

.feature-block-one .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-block-one .inner-box:hover .icon-box {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.feature-block-one .icon-box i {
    font-size: 32px;
    color: var(--white);
}

.feature-block-one h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-block-one h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-block-one h3 a:hover {
    color: var(--primary);
}

.feature-block-one .text {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.counter-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.counter-box {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    min-width: 120px;
}

.counter {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.counter-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .counter-stats {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .counter-box {
        flex: 1 1 calc(50% - 15px);
        min-width: calc(50% - 15px);
        padding: 15px 10px;
    }
    
    .counter {
        font-size: 32px;
    }
    
    .counter-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .counter-stats {
        gap: 10px;
    }
    
    .counter-box {
        flex: 1 1 100%;
        min-width: calc(50% - 10px);
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 991px) {
    .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .col-lg-3,
    .col-md-6,
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .feature-section {
        padding: 50px 0;
    }
    
    .feature-block-one .inner-box {
        padding: 30px 20px;
    }
}

/* Delivery Section */
.delivery-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #D5E6F7;
}

.border-shap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.border-1, .border-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-size: cover;
    opacity: 0.1;
}

.delivery-section .auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.delivery-section .top-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
}

.delivery-section .title-inner {
    flex: 0 0 100%;
}

.delivery-section .title-inner .sec-title {
    margin-bottom: 15px;
}

.delivery-section .title-inner .sec-title h1 {
    font-size: 36px;
}

.delivery-section .text-inner {
    flex: 0 0 100%;
    text-align: center;
}

.delivery-section .text-inner .text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    line-height: 1.7;
}

.delivery-section .inner-content {
    margin-top: 40px;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.single-shop-block .inner-box {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.single-shop-block .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.single-shop-block .border-one,
.single-shop-block .border-two {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.single-shop-block .border-one {
    border: 2px solid var(--primary);
    opacity: 0;
}

.single-shop-block .inner-box:hover .border-one {
    opacity: 1;
}

.single-shop-block .image-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 220px;
}

.single-shop-block .image-box img {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}

.single-shop-block h3 {
    padding: 20px 15px 5px;
    font-size: 18px;
}

.single-shop-block h3 a {
    color: var(--dark);
    transition: color 0.3s ease;
}

.single-shop-block h3 a:hover {
    color: var(--primary);
}

.single-shop-block .text {
    padding: 0 15px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

.single-shop-block .cart-btn {
    padding: 15px;
}

.single-shop-block .cart-btn a {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.single-shop-block .cart-btn a:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .products-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .single-shop-block .image-box {
        height: 200px;
    }
    
    .delivery-section {
        padding: 60px 0;
    }
    
    .delivery-section .title-inner .sec-title h1 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .products-carousel {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .single-shop-block {
        margin-bottom: 20px;
    }
    
    .single-shop-block .image-box {
        height: auto;
        min-height: auto;
    }
    
    .single-shop-block .image-box img {
        height: auto;
        min-height: 200px;
        object-fit: cover;
    }
    
    .single-shop-block h3 {
        padding: 15px 15px 5px;
        font-size: 16px;
    }
    
    .single-shop-block .text {
        padding: 0 15px;
        font-size: 13px;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #D5E6F7;
}

.video-section .auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.video-section .upper-content {
    margin-bottom: 50px;
}

.video-section .video-inner {
    margin-bottom: 40px;
}

.video-section .video-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-section .video-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.video-section .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-section .video-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    transition: all 0.4s ease;
}

.video-section .video-btn a:hover {
    background: var(--dark);
    transform: scale(1.1);
}

.video-section .top-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.video-section .title-inner {
    flex: 0 0 100%;
}

.video-section .title-inner .sec-title h1 {
    font-size: 36px;
    color: var(--primary);
}

.video-section .text-inner {
    flex: 0 0 100%;
    text-align: center;
}

.video-section .text-inner .text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    line-height: 1.8;
    font-size: 15px;
}

.video-section .lower-content {
    margin-top: 40px;
}

.video-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.video-section .image-column {
    padding: 0 15px;
    margin-bottom: 30px;
}

.video-section .image-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-section .image-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-section .image-box:hover img {
    transform: scale(1.05);
}

@media (min-width: 992px) {
    .video-section .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 991px) {
    .video-section .col-lg-4,
    .video-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .video-section .video-box img {
        height: 300px;
    }
    
    .video-section .title-inner .sec-title h1 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .video-section .col-lg-4,
    .video-section .col-md-6,
    .video-section .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .video-section {
        padding: 50px 0;
    }
    
    .video-section .video-box img {
        height: 250px;
    }
    
    .video-section .image-box img {
        height: 200px;
    }
}

/* Composition Section */
.composition-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.composition-section .auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.composition-section .upper-content {
    margin-top: 50px;
    margin-bottom: 50px;
}

.composition-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
}

.composition-section .left-column,
.composition-section .right-column {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.composition-section .image-column {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.composition-section .left-column .inner-box,
.composition-section .right-column .inner-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.composition-section .single-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.composition-section .single-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.composition-section .icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.composition-section .icon-box span {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.composition-section .single-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.composition-section .single-item h3 a {
    color: var(--dark);
    transition: color 0.3s ease;
}

.composition-section .single-item h3 a:hover {
    color: var(--primary);
}

.composition-section .single-item h5 {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 10px;
}

.composition-section .single-item .text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.composition-section .image-box {
    text-align: center;
}

.composition-section .image-box .image img {
    max-width: 100%;
    height: auto;
}

.composition-section .lower-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.composition-section .lower-content .single-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.composition-section .lower-content .single-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.composition-section .lower-content .single-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
}

.composition-section .lower-content .single-item h5 {
    color: var(--primary);
    font-size: 15px;
    margin: 0;
}

@media (max-width: 991px) {
    .composition-section .left-column,
    .composition-section .right-column,
    .composition-section .image-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .composition-section .image-column {
        order: -1;
        margin-bottom: 30px;
    }
    
    .composition-section .lower-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .composition-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .composition-section .lower-content {
        grid-template-columns: 1fr;
    }
    
    .composition-section {
        padding: 50px 0;
    }
    
    .composition-section .single-item {
        padding: 20px;
    }
}

/* Info Section */
.info-section {
    display: flex;
    min-height: auto;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.info-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

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

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.info-content h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 25px;
}

.benefits-list {
    margin-bottom: 25px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: var(--white);
    color: var(--dark);
}

.testimonials-section .section-header h1 {
    color: var(--primary);
}

.testimonials-section .section-header p {
    color: var(--gray);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card .quote {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.testimonial-card .author h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.testimonial-card .author span {
    font-size: 13px;
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 40px;
    color: var(--white);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info > p {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 14px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
}

.info-item p {
    font-size: 14px;
    margin: 0;
}

.info-item a {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

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

.contact-form {
    padding: 40px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #ccc;
}

.contact-form .btn {
    width: 100%;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: #D5E6F7;
    color: #040000;
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-col .logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-col p {
    color: #040000;
    font-size: 14px;
    opacity: 0.8;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #040000;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #040000;
    font-size: 14px;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--primary);
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    background: #D5E6F7;
}

.footer-bottom p {
    color: #040000;
    font-size: 13px;
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE STYLES - TABLET (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .header-content {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }

    .logo img {
        height: 65px;
    }

    .menu-list li a {
        padding: 25px 10px;
        font-size: 14px;
    }

    .call-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

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

    .composition-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .composition-center {
        order: -1;
        grid-column: 1 / -1;
    }

    .composition-center img {
        max-width: 250px;
    }

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

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

/* ============================================
   RESPONSIVE STYLES - MOBILE (up to 768px)
   ============================================ */
@media (max-width: 768px) {
    .main-header {
        height: 80px;
    }

    .logo img {
        height: 70px;
    }

    .main-menu,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .logo {
        flex-shrink: 0;
    }

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

    .header-content {
        padding: 15px 0;
        position: relative;
    }

    .feature-section,
    .delivery-section,
    .video-section,
    .composition-section,
    .testimonials-section,
    .contact-section {
        padding: 50px 0;
    }

    .sec-title h1,
    .section-header h1 {
        font-size: 28px;
    }

    .sec-title h3 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 14px;
    }

    .features-grid,
    .products-grid,
    .composition-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .composition-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .composition-center {
        order: 0;
        grid-column: auto;
    }

    .composition-center img {
        max-width: 200px;
    }

    .video-box img {
        height: 220px;
    }

    .gallery-content h1 {
        font-size: 26px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .info-content h1 {
        font-size: 28px;
    }

    .benefits-list li {
        font-size: 15px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 25px;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 25px;
    }

    .footer-col .logo img {
        margin: 0 0 15px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .composition-center img {
        margin: 0 auto;
    }
}

/* ============================================
   RESPONSIVE STYLES - SMALL MOBILE (up to 480px)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 55px;
    }

    .sec-title h1,
    .section-header h1 {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .video-box img {
        height: 180px;
    }

    .play-btn a {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .gallery-content h1 {
        font-size: 22px;
    }

    .info-content h1 {
        font-size: 24px;
    }

    .info-content {
        padding: 25px;
    }

    .info-image {
        padding: 25px;
    }

    .info-image img {
        max-width: 200px;
    }

    .footer-content {
        padding-bottom: 25px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .sec-title h1,
    .section-header h1 {
        font-size: 22px;
    }

    .composition-card {
        padding: 20px;
    }

    .composition-list .item {
        padding: 15px;
    }

    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay for grid items */
.feature-section .feature-block:nth-child(1) .inner-box { transition-delay: 0ms; }
.feature-section .feature-block:nth-child(2) .inner-box { transition-delay: 100ms; }
.feature-section .feature-block:nth-child(3) .inner-box { transition-delay: 200ms; }
.feature-section .feature-block:nth-child(4) .inner-box { transition-delay: 300ms; }

.single-shop-block:nth-child(1) { transition-delay: 0.1s; }
.single-shop-block:nth-child(2) { transition-delay: 0.2s; }
.single-shop-block:nth-child(3) { transition-delay: 0.3s; }
.single-shop-block:nth-child(4) { transition-delay: 0.4s; }

.video-section .image-column:nth-child(1) { transition-delay: 0.1s; }
.video-section .image-column:nth-child(2) { transition-delay: 0.2s; }
.video-section .image-column:nth-child(3) { transition-delay: 0.3s; }

.testimonials-slider .testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonials-slider .testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonials-slider .testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* Prevent animation on reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* About Page Styles */
.about-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    color: var(--white);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 0;
    background: #D5E6F7;
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

.story-image {
    flex: 0 0 45%;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

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

.section-header h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: var(--white);
}

.why-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.products-we-offer {
    padding: 80px 0;
    background: #D5E6F7;
}

.products-list {
    max-width: 800px;
    margin: 0 auto;
}

.product-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.product-icon {
    flex: 0 0 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i {
    font-size: 24px;
    color: var(--white);
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.our-process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
}

.step p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stat-item h2 {
    font-size: 42px;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section {
    padding: 80px 0;
    background: #D5E6F7;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .story-content {
        flex-direction: column;
    }
    
    .story-image {
        flex: 0 0 100%;
        order: -1;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step::after {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .about-hero-content h1 {
        font-size: 32px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

.softener-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #01c7ff 0%, #01c7ff 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0077b6 0%, #0077b6 100%);
    color: var(--white);
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 1;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

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

.whatsapp-float-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #333;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Callback Modal */
.callback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.callback-modal.active {
    display: flex;
}

.callback-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.callback-modal-content {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 420px;
    width: 90%;
    z-index: 1;
    animation: slideUp 0.4s ease;
}

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

.callback-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.callback-modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.callback-header {
    text-align: center;
    margin-bottom: 25px;
}

.callback-header i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.callback-header h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.callback-header p {
    font-size: 14px;
    color: #666;
}

.callback-form .form-group {
    margin-bottom: 15px;
}

.callback-form input,
.callback-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.callback-form input:focus,
.callback-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.callback-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.callback-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
}

.callback-submit-btn:active {
    transform: translateY(0);
}

.callback-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.callback-trust span {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.callback-trust i {
    color: var(--primary);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

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

.mobile-sticky-cta a:active {
    transform: scale(0.98);
}

.sticky-call-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    margin-right: 10px;
}

.sticky-whatsapp-btn {
    flex: 1;
    background: #25D366;
    color: #fff;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }
    
    .whatsapp-float-btn {
        bottom: 90px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Counter Animation */
.counter-box {
    display: inline-block;
}

.counter {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.counter-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 119, 182, 0.1);
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary);
}

.trust-badge i {
    font-size: 16px;
}

/* Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Card Hover Effects */
.single-shop-block .inner-box,
.feature-block-one .inner-box,
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.single-shop-block .inner-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.feature-block-one .inner-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Image Loading Animation */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img.loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

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

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

/* Link Underline Animation */
a {
    position: relative;
}

.menu-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.menu-list li a:hover::after,
.menu-list li a.active::after {
    width: 100%;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Loading Skeleton Animation */
@keyframes skeleton-loading {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}
