/* ==========================================================================
   PASTER.COM.TR - PREMIUM LIGHT MEDICAL DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    /* Color Tokens (Premium Light Medical Theme) */
    --primary-h: 215;
    --primary-s: 60%;
    --primary-l: 15%; /* Deep Slate Navy for text/headings #091e36 */
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --primary-light: hsl(var(--primary-h), var(--primary-s), 28%);
    
    --accent-h: 198;
    --accent-s: 100%;
    --accent-l: 38%; /* Professional Medical Blue #007acc */
    --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
    --accent-hover: hsl(var(--accent-h), var(--accent-s), 30%);
    --accent-glow: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.15);
    
    --teal-h: 180;
    --teal-s: 90%;
    --teal-l: 38%; /* Sterilizing Teal for accents */
    --teal: hsl(var(--teal-h), var(--teal-s), var(--teal-l));
    --teal-glow: hsla(var(--teal-h), var(--teal-s), var(--teal-l), 0.15);

    --bg-h: 214;
    --bg-s: 40%;
    --bg-l: 98%; /* Clean ice-blue background */
    --bg: hsl(var(--bg-h), var(--bg-s), var(--bg-l));
    --bg-card: #ffffff;
    
    --text-main: hsl(215, 40%, 20%);
    --text-muted: hsl(215, 15%, 48%);
    --text-light: #ffffff;
    
    /* Layout Tokens */
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --max-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 20px -3px rgba(9, 30, 54, 0.05), 0 4px 6px -2px rgba(9, 30, 54, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(9, 30, 54, 0.08), 0 10px 10px -5px rgba(9, 30, 54, 0.04);
    --shadow-accent: 0 10px 20px -3px hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.2);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

/* ==========================================================================
   PRELOADER & SPLASH SCREEN (Kept Dark & Luxurious)
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #08213d 0%, #031122 100%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1),
                visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1),
                transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px) scale(1.02);
    filter: blur(10px);
}

/* Perfect Circular Welcome Badge for Logo in Preloader */
.loader-logo-container {
    position: relative;
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 18px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 229, 229, 0.2);
    border: 3px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    animation: logoPulse 2s ease-in-out infinite alternate;
}

.loader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-logo-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    opacity: 0;
    animation: waveEffect 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.loader-text {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    animation: textSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.loader-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--teal);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    margin-top: 8px;
    opacity: 0;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

@keyframes logoPulse {
    0% { transform: scale(0.95); }
    100% { transform: scale(1.05); }
}

@keyframes waveEffect {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.35); opacity: 0; }
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ==========================================================================
   HEADER & NAVIGATION (Light Glassmorphism - No White Box Around Logo)
   ========================================================================== */

#header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

#header-container.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85); /* Premium Light Glassmorphism */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(9, 30, 54, 0.06);
    box-shadow: var(--shadow-sm);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* Clean transparent logo floating on the light glass header */
.logo img {
    height: 54px;
    object-fit: contain;
    transition: var(--transition);
}

#header-container.scrolled .logo img {
    height: 46px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-main); /* Dark slate text for legibility on light background */
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu .cta-btn {
    background-color: var(--accent);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    box-shadow: var(--shadow-accent);
}

.nav-menu .cta-btn::after {
    display: none;
}

.nav-menu .cta-btn:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 1px solid rgba(9, 30, 54, 0.12);
    padding-left: 15px;
    margin-left: 5px;
}

.lang-btn {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-btn.active {
    color: var(--accent);
}

.lang-btn:hover {
    color: var(--primary);
}

/* Mobile Menu Button (Dark slate color to match light header) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background-color: rgba(9, 30, 54, 0.05);
}

/* ==========================================================================
   HERO SECTION (Premium Light Medical Theme)
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, hsl(var(--bg-h), var(--bg-s), 94%) 100%);
    color: var(--text-main);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
    overflow: hidden;
}

/* Soft Radial Glow Blobs */
.hero-section::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 229, 229, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 122, 204, 0.08) 0%, transparent 60%);
    bottom: -100px;
    left: -100px;
    z-index: 1;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.6rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary);
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: rgba(9, 30, 54, 0.04);
    color: var(--primary);
    border: 1px solid rgba(9, 30, 54, 0.08);
}

.btn-secondary:hover {
    background-color: rgba(9, 30, 54, 0.08);
    transform: translateY(-3px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 122, 204, 0.08);
    border: 1px solid rgba(0, 122, 204, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

/* Elegant Light Hero Card */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);
    border: 1px solid rgba(9, 30, 54, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-image-card img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: var(--transition);
}

.hero-image-card:hover img {
    transform: scale(1.02);
}

/* Floating B2B Stats (Light glassmorphic card style) */
.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(9, 30, 54, 0.08);
    backdrop-filter: blur(12px);
    padding: 15px 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    animation: floatAnimation 6s ease-in-out infinite;
}

.floating-stat-1 {
    bottom: -15px;
    left: -20px;
}

.floating-stat-2 {
    top: -20px;
    right: -10px;
    animation-delay: 3s;
}

.floating-stat i {
    font-size: 1.5rem;
    color: var(--accent);
}

.floating-stat div span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.floating-stat div p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   ABOUT (HAKKIMIZDA) SECTION
   ========================================================================== */

.about-section {
    background-color: var(--bg-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-img-group {
    position: relative;
}

.about-img-main {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
    border: 5px solid #ffffff;
}

.about-img-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 122, 204, 0.05);
    top: 20px;
    left: -20px;
    border-radius: var(--border-radius-lg);
    z-index: 1;
    border: 2px dashed var(--accent);
}

.about-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-item i {
    color: var(--accent);
    font-size: 1.25rem;
    background-color: rgba(0, 122, 204, 0.08);
    padding: 8px;
    border-radius: var(--border-radius-sm);
    margin-top: 3px;
}

.about-feature-item h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.about-feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   INTERACTIVE PRODUCT CATALOG
   ========================================================================== */

.catalog-section {
    background-color: var(--bg);
}

.catalog-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-tab {
    background-color: var(--bg-card);
    border: 1px solid rgba(9, 30, 54, 0.06);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-tab:hover {
    background-color: rgba(9, 30, 54, 0.02);
    transform: translateY(-2px);
}

.filter-tab.active {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Product Card - Light Aesthetic */
.product-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(9, 30, 54, 0.05);
    position: relative;
}

.product-card.visible {
    animation: cardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 122, 204, 0.25);
}

.product-card-img {
    position: relative;
    background-color: rgba(9, 30, 54, 0.01);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-card-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-card:hover .product-badge {
    background-color: var(--accent);
    color: var(--text-light);
}

.product-card-content {
    padding: 24px;
}

.product-card-content h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 8px;
    transition: var(--transition);
}

.product-card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Specification Lists */
.product-specs {
    border-top: 1px solid rgba(9, 30, 54, 0.06);
    padding-top: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.spec-val {
    color: var(--primary);
    font-weight: 600;
}

.product-card-action {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-card {
    width: 100%;
    padding: 10.5px 0;
    border-radius: var(--border-radius-md);
    background-color: rgba(9, 30, 54, 0.04);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.product-card:hover .btn-card {
    background-color: var(--accent);
    color: var(--text-light);
    box-shadow: var(--shadow-accent);
}

/* ==========================================================================
   B2B CONFIGURE & QUOTE SECTION (Luxurious Contrast Dark Section)
   ========================================================================== */

.quote-section {
    background: radial-gradient(circle at 10% 90%, hsl(215, 60%, 14%) 0%, var(--primary) 60%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.quote-section .section-title h2 {
    color: var(--text-light);
}

.quote-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.quote-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.quote-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-info h3 span {
    color: var(--accent);
}

.quote-info p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.quote-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    background-color: rgba(0, 122, 204, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 122, 204, 0.25);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.step-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Configurator Form Card */
.quote-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group select,
.form-group input {
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group select option {
    background-color: var(--primary);
    color: var(--text-light);
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.25);
    background-color: rgba(255, 255, 255, 0.1);
}

.form-actions {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 15px;
    margin-top: 10px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

.btn-email {
    background-color: var(--accent);
    color: var(--text-light);
    border: none;
    box-shadow: var(--shadow-accent);
}

.btn-email:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ==========================================================================
   CONTACT & MAP SECTION
   ========================================================================== */

.contact-section {
    background-color: var(--bg-card);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-info-panel h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: -10px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-item-icon {
    background-color: rgba(0, 122, 204, 0.05);
    color: var(--accent);
    border: 1px solid rgba(0, 122, 204, 0.08);
    width: 46px;
    height: 46px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.contact-item-text h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 3px;
}

.contact-item-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    background-color: rgba(0, 122, 204, 0.05);
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Modern Map Container */
.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 350px;
    border: 1px solid rgba(9, 30, 54, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Footer Styles */
.footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 70px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 46px;
    background-color: #ffffff;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 4px;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.designer-logo img {
    height: 22px;
    opacity: 0.5;
    transition: var(--transition);
}

.designer-logo:hover img {
    opacity: 0.9;
}

/* ==========================================================================
   FLOATING ELEMENTS (WHATSAPP QUICK DIALOG)
   ========================================================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 998;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    top: 0;
    left: 0;
    opacity: 0.7;
    animation: whatsappPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        margin: 0 auto 30px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-container {
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-group {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 40px 30px;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        transition: var(--transition);
    }
    
    /* Make mobile drawer links white for visibility on dark drawer */
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu.active a {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-menu.active a:hover {
        color: var(--accent);
    }
    
    .nav-menu .cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .lang-selector {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-left: 0;
        padding-top: 20px;
        margin-left: 0;
        width: 100%;
        gap: 15px;
    }
    
    .lang-btn {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .lang-btn.active {
        color: var(--accent);
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .catalog-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-actions {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-stat {
        display: none;
    }
    
    .quote-card {
        padding: 25px 20px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   FEATURED CARD & SIZES TABLE STYLING
   ========================================================================== */

@media (min-width: 992px) {
    .product-card.featured {
        grid-column: span 2;
        display: flex;
        flex-direction: row;
    }
    .product-card.featured .product-card-img {
        width: 35%;
        aspect-ratio: auto;
        border-right: 1px solid rgba(9, 30, 54, 0.05);
        padding: 25px;
    }
    .product-card.featured .product-card-content {
        width: 65%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.pmf-table-container {
    width: 100%;
    margin-top: 15px;
    overflow-x: auto;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(9, 30, 54, 0.06);
    background-color: rgba(9, 30, 54, 0.01);
}

.pmf-sizes-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.8rem;
}

.pmf-sizes-table th,
.pmf-sizes-table td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(9, 30, 54, 0.06);
}

.pmf-sizes-table th {
    background-color: rgba(9, 30, 54, 0.03);
    color: var(--primary);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.pmf-sizes-table tbody tr:last-child td {
    border-bottom: none;
}

.pmf-sizes-table tbody tr:hover {
    background-color: rgba(0, 122, 204, 0.04);
}

