/* ==========================
   CSS Variables
   ========================== */
:root {
    --primary-color: #1E90FF;
    --secondary-color: #00BFFF;
    --dark-blue: #0066CC;
    --text-dark: #333;
    --text-light: #666;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(30, 144, 255, 0.3);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --font-family: 'Poppins', sans-serif;
}

/* ==========================
   Reset & Base Styles
   ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================
   Container
   ========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================
   Buttons
   ========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    z-index: 1;
}

.btn-primary > * {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.btn-secondary > * {
    position: relative;
    z-index: 2;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
}

.btn-call {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
}

.btn-call:hover {
    background: var(--dark-blue);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ==========================
   Header
   ========================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 15px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

#header.scrolled {
    box-shadow: 0 4px 20px var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================
   Hero Section
   ========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin-top: 0;
    padding-top: 90px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

/* Floating Water Drops Animation */
.water-drops {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.drop {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
    backdrop-filter: blur(2px);
}

.drop:nth-child(1) {
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.drop:nth-child(2) {
    left: 20%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
    animation-duration: 14s;
}

.drop:nth-child(3) {
    left: 35%;
    width: 80px;
    height: 80px;
    animation-delay: 4s;
    animation-duration: 16s;
}

.drop:nth-child(4) {
    left: 50%;
    width: 50px;
    height: 50px;
    animation-delay: 1s;
    animation-duration: 13s;
}

.drop:nth-child(5) {
    left: 65%;
    width: 70px;
    height: 70px;
    animation-delay: 3s;
    animation-duration: 15s;
}

.drop:nth-child(6) {
    left: 75%;
    width: 45px;
    height: 45px;
    animation-delay: 5s;
    animation-duration: 11s;
}

.drop:nth-child(7) {
    left: 85%;
    width: 55px;
    height: 55px;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.drop:nth-child(8) {
    left: 5%;
    width: 35px;
    height: 35px;
    animation-delay: 6s;
    animation-duration: 14s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(100px) rotate(360deg);
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.hero h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==========================
   Section Headers
   ========================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* ==========================
   Products Section
   ========================== */
.products {
    padding: 80px 0;
    background: var(--light-gray);
}

.product-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.6s ease;
}

.category-title i {
    color: var(--primary-color);
    font-size: 32px;
    animation: bounce 1s ease;
}

.product-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray);
}

.product-slider::-webkit-scrollbar {
    height: 8px;
}

.product-slider::-webkit-scrollbar-track {
    background: var(--gray);
    border-radius: 10px;
}

.product-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.product-card {
    min-width: 220px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: white;
    padding: 15px;
    box-sizing: border-box;
}

.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    min-height: 40px;
}

.product-info p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
    flex-grow: 1;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.product-btn:hover {
    gap: 12px;
}

/* ==========================
   About Section
   ========================== */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    animation: slideInLeft 1s ease;
}

.about-content {
    animation: slideInRight 1s ease;
}

/* Statistics Cards */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    animation: scaleIn 0.6s ease;
    animation-fill-mode: both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 28px;
    color: var(--white);
}

.stat-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* About Badge Large */
.about-badge-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.about-badge-large i {
    font-size: 48px;
    color: var(--white);
}

.about-badge-large span {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}

.about-badge-large strong {
    font-size: 22px;
    font-weight: 700;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.about-features i {
    color: var(--primary-color);
    font-size: 20px;
}

/* ==========================
   Why Us Section
   ========================== */
.why-us {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-header h2::after {
    background: var(--white);
}

.why-us .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: float 3s ease-in-out infinite;
}

.feature-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ==========================
   Contact Section
   ========================== */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-grid {
    margin-bottom: 50px;
}

.contact-info-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    animation: slideInLeft 0.6s ease;
    animation-fill-mode: both;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-card p {
    color: var(--text-light);
    font-size: 15px;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.info-card a:hover {
    color: var(--dark-blue);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: 0 4px 15px var(--shadow);
    animation: slideInRight 0.8s ease;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 15px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    animation: fadeIn 1s ease;
}

.map-wrapper iframe {
    display: block;
}

.review-button-wrapper {
    text-align: center;
    padding: 20px;
    background: white;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.btn-review i {
    color: #ffc107;
    font-size: 18px;
}

/* ==========================
   Footer
   ========================== */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-about strong {
    color: var(--secondary-color);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 12px 20px;
    border-radius: 50px;
    margin-top: 15px;
    animation: pulse 3s ease-in-out infinite;
}

.footer-badge i {
    font-size: 24px;
    color: var(--white);
}

.footer-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer ul li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================
   Video Section
   ========================== */
.video-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.promo-video {
    width: 100%;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.video-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.video-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* ==========================
   Testimonials Section
   ========================== */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

/* Google Review CTA */
.review-cta {
    margin-bottom: 50px;
}

.review-cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #4285f4, #34a853) !important;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.3);
}

.review-text h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-text h3 i {
    color: #ffc107;
    font-size: 32px;
}

.review-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-text .btn {
    background: var(--white);
    color: #4285f4;
    font-weight: 600;
}

.review-text .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.review-qr {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-qr img {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 8px;
}

.review-qr p {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonials-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 15px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray);
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: var(--gray);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.testimonial-card {
    min-width: 320px;
    max-width: 350px;
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    animation: slideInLeft 0.8s ease;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.testimonial-header h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ==========================
   Blog Section
   ========================== */
.blog {
    padding: 80px 0;
    background: var(--light-gray);
}

.blog-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray);
}

.blog-grid::-webkit-scrollbar {
    height: 8px;
}

.blog-grid::-webkit-scrollbar-track {
    background: var(--gray);
    border-radius: 10px;
}

.blog-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.blog-card {
    min-width: 280px;
    max-width: 300px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
    flex-shrink: 0;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 160px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 18px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 12px;
    color: var(--dark-blue);
}

/* ==========================
   Sticky Buttons (Enhanced)
   ========================== */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    animation: pulseStrong 2s infinite, bounce 2s ease-in-out infinite;
    position: relative;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: ripple 1.5s ease-out infinite;
}

.btn-phone {
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
}

.btn-phone::before {
    border: 3px solid #1E90FF;
}

.btn-phone:hover {
    background: linear-gradient(135deg, #0066CC, #1E90FF);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(30, 144, 255, 0.6);
}

.btn-whatsapp-sticky {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-whatsapp-sticky::before {
    border: 3px solid #25D366;
}

.btn-whatsapp-sticky:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseStrong {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 6px 35px rgba(30, 144, 255, 0.8);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================
   Responsive Design
   ========================== */

/* Tablet ve Üzeri (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .product-slider {
        gap: 30px;
    }
}

/* Laptop ve Tablet (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero h2 {
        font-size: 26px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        transition: transform 0.3s ease, left 0.3s ease;
        box-shadow: 4px 0 20px var(--shadow);
        z-index: 9999;
        padding-top: 80px;
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 30px;
        gap: 0;
    }

    .nav-menu ul li {
        border-bottom: 1px solid var(--gray);
        padding: 15px 0;
    }

    .nav-menu ul li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex;
        z-index: 10000;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Header buttons hidden on tablet */
    .header-buttons {
        display: none;
    }

    /* Hero Section */
    .hero {
        margin-top: 0;
        padding-top: 90px;
        min-height: 550px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 17px;
    }

    /* Grid layouts */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon i {
        font-size: 24px;
    }

    .stat-info h3 {
        font-size: 24px;
    }

    .stat-info p {
        font-size: 12px;
    }

    .about-badge-large {
        padding: 25px;
    }

    .about-badge-large i {
        font-size: 40px;
    }

    .about-badge-large span {
        font-size: 16px;
    }

    .about-badge-large strong {
        font-size: 20px;
    }

    .contact-info-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Sections */
    .section-header h2 {
        font-size: 32px;
    }

    .category-title {
        font-size: 24px;
    }

    /* Products */
    .product-card {
        min-width: 200px;
    }

    .product-image {
        height: 160px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Mobile Landscape & Small Tablet (576px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    /* Review CTA Responsive */
    .review-cta-content {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 25px;
        text-align: center;
    }

    .review-text h3 {
        font-size: 22px;
        justify-content: center;
    }

    .review-text p {
        font-size: 14px;
    }

    .review-qr img {
        width: 150px;
        height: 150px;
    }

    /* Header */
    .logo img {
        height: 38px;
    }

    .header-content {
        padding: 8px 0;
    }

    /* Hero Section */
    .hero {
        margin-top: 0;
        padding-top: 65px;
        min-height: 400px;
        padding-bottom: 25px;
    }

    .hero h1 {
        font-size: 22px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .hero h2 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .hero-buttons {
        gap: 10px;
        flex-direction: column;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    /* Sections spacing */
    .products,
    .about,
    .why-us,
    .contact {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .section-header h2::after {
        width: 50px;
        height: 2px;
        margin-top: 8px;
    }

    .section-header p {
        font-size: 13px;
    }

    /* Products */
    .category-title {
        font-size: 17px;
        padding: 10px 0;
        margin-bottom: 12px;
    }

    .category-title i {
        font-size: 20px;
        margin-right: 8px;
    }

    .product-category {
        margin-bottom: 30px;
    }

    .product-slider {
        gap: 12px;
        padding: 12px 0;
    }

    .product-card {
        min-width: 160px;
    }

    .product-image {
        height: 130px;
        padding: 10px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 13px;
        min-height: 34px;
        margin-bottom: 6px;
    }

    .product-info p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .product-btn {
        font-size: 12px;
        gap: 5px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .feature-icon i {
        font-size: 26px;
    }

    /* About */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 15px;
    }

    .stat-card {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .stat-icon i {
        font-size: 20px;
    }

    .stat-info h3 {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .stat-info p {
        font-size: 10px;
    }

    .about-badge-large {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .about-badge-large i {
        font-size: 30px;
    }

    .about-badge-large span {
        font-size: 12px;
    }

    .about-badge-large strong {
        font-size: 16px;
    }

    .about-content h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .about-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Video Section */
    .promo-video {
        max-height: 300px;
    }

    .video-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Testimonials */
    .testimonials {
        padding: 40px 0;
    }

    .testimonials-slider {
        gap: 15px;
        padding: 15px 10px;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 280px;
        padding: 18px;
    }

    .testimonial-header h3 {
        font-size: 15px;
    }

    .testimonial-stars i {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    /* Blog */
    .blog {
        padding: 40px 0;
    }

    .blog-grid {
        gap: 15px;
        padding: 15px 10px;
    }

    .blog-card {
        min-width: 240px;
        max-width: 260px;
    }

    .blog-image {
        height: 140px;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-content h3 {
        font-size: 14px;
    }

    .blog-content p {
        font-size: 12px;
    }

    .blog-meta {
        font-size: 11px;
        gap: 10px;
    }

    /* Contact */
    .contact-info-full {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-card {
        padding: 15px;
    }

    .info-card h3 {
        font-size: 15px;
    }

    .info-card p {
        font-size: 13px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }

    .info-icon i {
        font-size: 20px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    /* Sticky buttons */
    .sticky-buttons {
        bottom: 15px;
        right: 12px;
        gap: 10px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* Footer */
    .footer {
        padding: 35px 0 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-about p,
    .footer ul li {
        font-size: 13px;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 12px;
    }

    /* Header */
    .logo img {
        height: 35px;
    }

    .header-content {
        padding: 6px 0;
    }

    /* Hero Section */
    .hero {
        margin-top: 0;
        padding-top: 60px;
        min-height: 360px;
        padding-bottom: 20px;
    }

    .hero h1 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .hero h2 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-lg {
        width: 100%;
        padding: 11px 20px;
        font-size: 13px;
        justify-content: center;
    }

    /* Sections */
    .products,
    .about,
    .why-us,
    .contact,
    .testimonials,
    .blog {
        padding: 35px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .section-header h2::after {
        width: 45px;
        height: 2px;
        margin-top: 6px;
    }

    .section-header p {
        font-size: 12px;
    }

    /* Products */
    .category-title {
        font-size: 15px;
        padding: 8px 0;
        margin-bottom: 10px;
    }

    .category-title i {
        font-size: 18px;
    }

    .product-category {
        margin-bottom: 25px;
    }

    .product-slider {
        gap: 10px;
        padding: 10px 0;
    }

    .product-card {
        min-width: 150px;
    }

    .product-image {
        height: 120px;
        padding: 8px;
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 12px;
        margin-bottom: 5px;
        min-height: 32px;
    }

    .product-info p {
        font-size: 10px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .product-btn {
        font-size: 11px;
        gap: 4px;
    }

    /* About */
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .stat-card {
        padding: 10px;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 5px;
    }

    .stat-icon i {
        font-size: 18px;
    }

    .stat-info h3 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .stat-info p {
        font-size: 9px;
    }

    .about-badge-large {
        padding: 12px;
    }

    .about-badge-large i {
        font-size: 28px;
    }

    .about-badge-large span {
        font-size: 11px;
    }

    .about-badge-large strong {
        font-size: 14px;
    }

    .about-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .about-content p {
        font-size: 12px;
    }

    /* Features */
    .feature-card {
        padding: 18px 12px;
    }

    .feature-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 12px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .feature-icon i {
        font-size: 24px;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 240px;
        max-width: 260px;
        padding: 15px;
    }

    .testimonial-header h3 {
        font-size: 14px;
    }

    .testimonial-stars i {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    /* Blog */
    .blog-card {
        min-width: 220px;
        max-width: 240px;
    }

    .blog-image {
        height: 130px;
    }

    .blog-content {
        padding: 12px;
    }

    .blog-content h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .blog-content p {
        font-size: 11px;
    }

    .blog-meta {
        font-size: 10px;
        gap: 8px;
    }

    /* Contact */
    .info-card {
        padding: 12px;
    }

    .info-card h3 {
        font-size: 14px;
    }

    .info-card p {
        font-size: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .info-icon i {
        font-size: 18px;
    }

    .map-wrapper iframe {
        height: 280px;
    }

    /* Sticky buttons */
    .sticky-buttons {
        bottom: 12px;
        right: 10px;
        gap: 8px;
    }

    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* Video Section */
    .promo-video {
        max-height: 260px;
    }

    .video-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 30px 0 12px;
    }

    .footer-grid {
        gap: 20px;
    }

    .footer h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-about p,
    .footer ul li {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 11px;
        padding-top: 15px;
        margin-top: 20px;
        max-width: 320px;
    }

    /* Blog */
    .blog {
        padding: 50px 0;
    }

    .blog-card {
        min-width: 260px;
        max-width: 300px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-about p {
        font-size: 14px;
    }

    .footer h3 {
        font-size: 18px;
    }

    .footer ul li {
        font-size: 14px;
    }
}

/* Extra Small Mobile (below 375px) */
@media (max-width: 374px) {
    .hero h1 {
        font-size: 22px;
    }

    .hero h2 {
        font-size: 15px;
    }

    .product-card {
        min-width: 150px;
    }

    .product-image {
        height: 120px;
    }

    .section-header h2 {
        font-size: 20px;
    }
}
