/* Yula Tech Global Styles */

/* Font Import - Roboto (Standard Google Font) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-dark: #111111;
    --primary-blue: #40b0e6;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #1a1a1a;
    --text-gray: #cccccc;
    --hover-blue: #5bc0f8;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

#loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(64, 176, 230, 0.1);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

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

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(64, 176, 230, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 80%;
}

.nav-links li a.active {
    color: var(--primary-blue);
}

/* Language Switcher - Premium Design */
.lang-switcher-container {
    position: relative;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(64, 176, 230, 0.1) 0%, rgba(64, 176, 230, 0.05) 100%);
    border: 2px solid rgba(64, 176, 230, 0.3);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(5px);
}

.lang-switch::before {
    content: '🌐';
    font-size: 1rem;
}

.lang-switch::after {
    content: '▼';
    font-size: 0.6rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.lang-switch:hover {
    background: linear-gradient(135deg, rgba(64, 176, 230, 0.2) 0%, rgba(64, 176, 230, 0.1) 100%);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 176, 230, 0.2);
}

.lang-switch.active::after {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(17, 17, 17, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(64, 176, 230, 0.3);
    border-radius: 15px;
    padding: 0.5rem;
    display: none;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(64, 176, 230, 0.1);
    animation: dropdownSlide 0.3s ease;
    z-index: 1001;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 0.8rem 1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.9rem;
    border-radius: 10px;
}

.lang-dropdown button:hover {
    background: rgba(64, 176, 230, 0.15);
    color: var(--white);
    transform: translateX(5px);
}

.lang-dropdown button.active {
    background: rgba(64, 176, 230, 0.2);
    color: var(--primary-blue);
}

.lang-dropdown button::before {
    font-size: 1.2rem;
}

.lang-dropdown button[data-lang="tr"]::before {
    content: '🇹🇷';
}

.lang-dropdown button[data-lang="en"]::before {
    content: '🇺🇸';
}

.lang-dropdown button[data-lang="ru"]::before {
    content: '🇷🇺';
}

.lang-dropdown button[data-lang="ar"]::before {
    content: '🇸🇦';
}

.lang-dropdown .lang-divider {
    height: 1px;
    background: rgba(64, 176, 230, 0.2);
    margin: 0.3rem 0;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    outline: none;
}

.mobile-menu:hover,
.mobile-menu:active {
    background: var(--primary-blue);
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(64, 176, 230, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Page Hero */
.page-hero {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(64, 176, 230, 0.1) 0%, transparent 70%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

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

.main-content ul {
    list-style: none;
    padding-left: 0;
}

.main-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.main-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Roboto', Arial, sans-serif;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(64, 176, 230, 0.3);
}

.btn-primary:hover {
    background: var(--hover-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(64, 176, 230, 0.5);
}

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

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

/* Cards */
.card {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(64, 176, 230, 0.1);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(64, 176, 230, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

/* Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Section */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Footer */
footer {
    background: var(--dark-gray);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(64, 176, 230, 0.1);
}

footer p {
    color: var(--text-gray);
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float,
a.whatsapp-float,
.whatsapp-float:link,
.whatsapp-float:visited,
.whatsapp-float:hover,
.whatsapp-float:active {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.3s ease;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: none !important;
    background-color: transparent !important;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
    COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 9998;
    border-top: 1px solid rgba(64, 176, 230, 0.3);
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.active {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    border: none;
    font-family: 'Roboto', Arial, sans-serif;
}

.cookie-btn-accept {
    background: var(--primary-blue);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--hover-blue);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-gray);
}

.cookie-btn-decline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ============================================
    BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb {
    padding: 1rem 0;
    background: rgba(26, 26, 26, 0.5);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-list li a {
    color: var(--text-gray);
    transition: var(--transition);
}

.breadcrumb-list li a:hover {
    color: var(--primary-blue);
}

.breadcrumb-list li.active {
    color: var(--primary-blue);
}

.breadcrumb-list li::after {
    content: '›';
    color: var(--text-gray);
    font-size: 1.2rem;
}

.breadcrumb-list li:last-child::after {
    content: '';
}

/* ============================================
    SITE SEARCH
   ============================================ */
.site-search {
    position: relative;
}

.search-toggle {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.search-toggle:hover {
    color: var(--primary-blue);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.95);
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 100%;
    max-width: 700px;
    padding: 0 2rem;
}

.search-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-box input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    font-size: 1.2rem;
    border: 2px solid rgba(64, 176, 230, 0.3);
    border-radius: 10px;
    background: var(--dark-gray);
    color: var(--white);
    font-family: 'Roboto', Arial, sans-serif;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-box input::placeholder {
    color: var(--text-gray);
}

.search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.search-results {
    max-height: 50vh;
    overflow-y: auto;
}

.search-result-item {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--dark-gray);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.search-result-item:hover {
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.search-result-item h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.search-result-item p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
    RELATED PRODUCTS
   ============================================ */
.related-products {
    padding: 4rem 0;
    background: var(--dark-gray);
}

.related-products .section-title h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.related-card {
    background: var(--primary-dark);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(64, 176, 230, 0.1);
    text-align: center;
}

.related-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.related-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.related-card h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.related-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
    FORM VALIDATION
   ============================================ */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(64, 176, 230, 0.2);
    border-radius: 8px;
    background: var(--dark-gray);
    color: var(--white);
    font-family: 'Roboto', Arial, sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff6464;
}

.form-group.success input,
.form-group.success textarea {
    border-color: #4caf50;
}

.form-error-message {
    color: #ff6464;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .form-error-message {
    display: block;
}

/* Back to top button */
.back-to-products {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.back-to-products:hover {
    color: var(--primary-blue);
}

/* ============================================
    ABOUT GRID
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ============================================
    MODAL STYLES
   ============================================ */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* ============================================
    RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .mobile-menu {
        display: block !important;
        z-index: 1002;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-links.active {
        left: 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Override inline grid styles for mobile responsiveness */
    section div[style*="grid-template-columns: 1fr 1fr"],
    section div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .main-content div[style*="grid-template-columns: 1fr 1fr"],
    .main-content div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Process cards mobile - flex to column */
    .card[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .card[style*="display: flex"]>div:first-child {
        width: 150px !important;
        height: 150px !important;
        margin-bottom: 1rem;
    }

    .hero {
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

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

    .page-hero {
        min-height: 250px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .main-content {
        padding: 2rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .logo {
        height: 45px;
    }

    /* About Grid Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-grid h2 {
        font-size: 2rem !important;
    }

    /* Modal Mobile */
    .modal-content {
        margin: 2% auto !important;
        width: 95% !important;
        max-height: 95vh !important;
    }

    .modal-content>div:first-child {
        padding: 1.5rem !important;
    }

    #modalImageContainer {
        max-width: 100% !important;
    }

    #modalTitle {
        font-size: 1.5rem !important;
    }

    #modalDescription {
        font-size: 1rem !important;
    }

    /* Related Products Mobile */
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }

    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .page-hero {
        min-height: 200px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    section {
        padding: 2rem 0;
    }

    .card {
        padding: 1.25rem;
    }

    .logo {
        height: 40px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    /* Related Products - Single Column on Small Mobile */
    .related-grid {
        grid-template-columns: 1fr;
    }

    /* About Grid Small Mobile */
    .about-grid {
        gap: 1.5rem;
    }

    .about-grid p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }

    /* Process Cards Mobile */
    .process-card img {
        height: 150px !important;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 300px;
    }

    .page-hero {
        min-height: 200px;
    }

    section {
        padding: 2rem 0;
    }

    /* WhatsApp Float Button - FINAL OVERRIDE */
    .whatsapp-float,
    a.whatsapp-float {
        background-color: transparent !important;
        background: transparent !important;
        background-image: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
}