/*
Theme Name: Sauna Dekor
Description: Premium sauna and wellness solutions theme based on the original Sauna Dekor website design. Features modern layout, responsive design, and dynamic content management for luxury spa businesses.
Author: Sauna Dekor
Version: 1.0.0
Text Domain: saunadecor
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: business, spa, wellness, sauna, luxury, responsive, custom-header, custom-menu, featured-images, threaded-comments, translation-ready

This theme is based on the original Sauna Dekor website design and converted to WordPress.
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2.8rem;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn-primary {
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    letter-spacing: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 1px solid #e2e8f0;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    letter-spacing: 0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #2563eb;
    transform: translateY(-1px);
}

.btn-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-link:hover {
    border-bottom: 2px solid #2563eb;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-logo .logo-img {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo .logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.5rem 0;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dropdown a:hover {
    color: #2563eb;
}

/* Secondary Navigation */
.nav-secondary {
    display: flex;
    gap: 1.5rem;
}

.nav-secondary-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-secondary-link:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 6rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-highlight {
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-cta {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.hero-cta.primary {
    background: white;
    color: #2563eb;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.hero-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.hero-cta.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Applications Showcase */
.applications-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Featured Applications */
.featured-applications {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 350px;
    position: relative;
}

.featured-app-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    height: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-app-item:hover {
    flex: 2.5;
    height: 350px;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
    z-index: 10;
}

.featured-applications:hover .featured-app-item:not(:hover) {
    flex: 0.8;
    height: 180px;
    opacity: 0.7;
    transform: scale(0.95);
}

.featured-app-item[data-category="pools"]:hover {
    background: white;
}



.featured-app-item[data-category="pools"]:hover .app-content h3 {
    color: #1e293b !important;
    font-weight: 700 !important;
}

.featured-app-item[data-category="pools"]:hover .app-summary {
    color: #374151 !important;
    font-weight: 500 !important;
}

.featured-app-item[data-category="pools"]:hover .app-subcategories {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.featured-app-item[data-category="pools"]:hover .app-subcategories a {
    color: #1e293b;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
}

.featured-app-item[data-category="pools"]:hover .app-subcategories a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
}



.featured-app-item[data-category="hamam"]:hover {
    background: white;
}

.featured-app-item[data-category="hamam"]:hover .app-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.featured-app-item[data-category="hamam"]:hover .app-content h3 {
    color: #1e293b !important;
    font-weight: 700 !important;
}

.featured-app-item[data-category="hamam"]:hover .app-summary {
    color: #374151 !important;
    font-weight: 500 !important;
}

.featured-app-item[data-category="hamam"]:hover .app-subcategories {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.featured-app-item[data-category="hamam"]:hover .app-subcategories a {
    color: #1e293b;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
}

.featured-app-item[data-category="hamam"]:hover .app-subcategories a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
}

.featured-app-item[data-category="sauna"]:hover {
    background: white;
}



.featured-app-item[data-category="sauna"]:hover .app-content h3 {
    color: #1e293b !important;
    font-weight: 700 !important;
}

.featured-app-item[data-category="sauna"]:hover .app-summary {
    color: #374151 !important;
    font-weight: 500 !important;
}

.featured-app-item[data-category="sauna"]:hover .app-subcategories {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.featured-app-item[data-category="sauna"]:hover .app-subcategories a {
    color: #1e293b;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
}

.featured-app-item[data-category="sauna"]:hover .app-subcategories a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
}



.app-icon {
    text-align: center;
    padding: 1rem 1rem 0.5rem;
    display: block;
    transition: all 0.3s ease;
}

.app-content {
    padding: 0 1rem 1rem;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-content h3 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.app-summary {
    color: #475569;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

/* Minimized state (when other items are hovered) */
.featured-applications:hover .featured-app-item:not(:hover) .app-icon {
    padding: 0.5rem 0.5rem 0.25rem;
}

.featured-applications:hover .featured-app-item:not(:hover) .app-content {
    padding: 0 0.75rem 0.75rem;
}

.featured-applications:hover .featured-app-item:not(:hover) .app-content h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1e293b;
}

.featured-applications:hover .featured-app-item:not(:hover) .app-summary {
    font-size: 0.75rem;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Expanded state */
.featured-app-item:hover .app-icon {
    padding: 1.5rem 1rem 1rem;
}

.featured-app-item:hover .app-content {
    padding: 0 1.5rem 1.5rem;
}

.featured-app-item:hover .app-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.app-subcategories {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    transform: translateY(10px);
}

.featured-app-item:hover .app-subcategories {
    opacity: 1;
    max-height: 300px;
    padding-top: 1rem;
    transform: translateY(0);
}

/* Ensure subcategories are completely hidden in minimized state */
.featured-applications:hover .featured-app-item:not(:hover) .app-subcategories {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    transform: translateY(10px);
}

.app-subcategories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
}

.app-subcategories li {
    margin-bottom: 0;
}

.app-subcategories a {
    display: block;
    color: #4b5563;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-subcategories a:hover {
    background: #f8fafc;
    color: #2563eb;
    border-color: #3b82f6;
    transform: translateY(-1px);
}

/* Project Showcase */
.project-showcase {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.project-showcase h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.project-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.project-highlight strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.project-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #f59e0b;
    text-decoration: underline;
}

/* Other Applications */
.other-applications {
    margin-top: 4rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.trust-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.trust-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Brand Partners Section */
.brand-partners {
    padding: 120px 0;
    background: white;
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.partners-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.partner-item {
    background: #fafbfc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.partner-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.partner-logo {
    width: 150px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.partner-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.partner-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Projects Portfolio Section */
.projects-portfolio {
    padding: 120px 0;
    background: #fafbfc;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.portfolio-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.project-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.project-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-location {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Services Overview Section */
.services-overview {
    padding: 120px 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.services-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.service-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.service-image {
    border-radius: 16px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-content {
    padding: 1rem 0;
}

.service-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #64748b;
}

.feature-icon {
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Process Timeline Section */
.process-timeline {
    padding: 120px 0;
    background: white;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.timeline-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Heritage Section */
.heritage {
    padding: 120px 0;
    background: #fafbfc;
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.heritage-text h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.heritage-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.heritage-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

/* Featured Product Section */
.featured-product {
    padding: 100px 0;
    background: white;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-info h2 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-info h3 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

/* Innovation Section */
.innovation {
    padding: 100px 0;
    background: #f9f9f9;
}

.innovation h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}

.innovation-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.innovation-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.innovation-item:hover {
    transform: translateY(-5px);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.innovation-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innovation-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.innovation-item p {
    color: #666;
    font-size: 1rem;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: white;
}

.products h2 {
    text-align: center;
    color: #333;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-card .product-image {
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-info {
    padding: 2rem;
}

.product-card .product-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-card .product-info p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Accessories Section */
.accessories {
    padding: 100px 0;
    background: #f9f9f9;
}

.accessories h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}

.accessories-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.accessory-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.accessory-item:hover {
    transform: translateY(-5px);
}

.accessory-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.accessory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accessory-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.accessory-item p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Consultation Section */
.consultation {
    padding: 100px 0;
    background: white;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.consultation-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.consultation-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.consultation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact h2 {
    text-align: center;
    color: #333;
    margin-bottom: 4rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: #2563eb;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #333;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #93c5fd;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #93c5fd;
}

.footer-copyright p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-secondary {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .hero {
        text-align: center;
        padding: 100px 0 50px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-stats {
        gap: 2rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .featured-applications {
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
    }
    
    .featured-app-item:hover {
        flex: 1;
        height: auto;
        transform: none;
    }
    
    .featured-applications:hover .featured-app-item:not(:hover) {
        flex: 1;
        height: auto;
        transform: none;
        opacity: 1;
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1.5rem 1rem;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-main {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .heritage-content,
    .product-showcase,
    .consultation-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .innovation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid,
    .accessories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .hero-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .innovation-item,
    .accessory-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .featured-applications {
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
    }
    
    .featured-app-item:hover {
        flex: 1;
        height: auto;
        transform: none;
    }
    
    .featured-applications:hover .featured-app-item:not(:hover) {
        flex: 1;
        height: auto;
        transform: none;
        opacity: 1;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
    }
}

/* References Section */
.references {
    padding: 80px 0;
    background: #f8fafc;
}

.references-header {
    text-align: center;
    margin-bottom: 3rem;
}

.references-header h2 {
    color: #1e293b;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.references-header p {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.references-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.stat-highlight {
    text-align: center;
}

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.references-carousel {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 0 15px;
    transition: all 0.4s ease;
    min-height: 160px;
    border: 2px solid transparent;
}

.reference-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.reference-item img {
    max-width: 250px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(40%) opacity(0.95);
    transition: all 0.4s ease;
}

.reference-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

/* Owl Carousel Custom Styles for References */
.references-carousel .owl-nav {
    margin-top: 2rem;
    text-align: center;
}

.references-carousel .owl-nav button {
    background: #2563eb !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 10px !important;
    font-size: 18px !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.references-carousel .owl-nav button:hover {
    background: #1d4ed8 !important;
    transform: scale(1.1) !important;
}

.references-carousel .owl-dots {
    margin-top: 2rem;
    text-align: center;
}

.references-carousel .owl-dot {
    background: #e2e8f0 !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.references-carousel .owl-dot.active {
    background: #2563eb !important;
    transform: scale(1.2) !important;
}

.references-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.references-cta h3 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.references-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsiveness for References */
@media (max-width: 768px) {
    .references-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .stat-big {
        font-size: 2.5rem;
    }
    
    .reference-item {
        padding: 1.5rem;
        min-height: 120px;
        margin: 0 10px;
    }
    
    .reference-item img {
        max-width: 180px;
        max-height: 90px;
    }
    
    .references-carousel .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    .references-cta {
        padding: 2rem 1rem;
    }
    
    .references-cta h3 {
        font-size: 1.5rem;
    }
} 

/* WordPress Specific Fixes */
body.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

/* Fix for WordPress admin bar pushing content down */
body.admin-bar .hero {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .hero {
        margin-top: 46px;
    }
}

/* WordPress default style overrides */
.wp-block-group, .wp-block-column {
    margin: 0 !important;
}

/* Ensure containers maintain proper spacing */
.applications-showcase .container,
.brand-partners .container,
.projects-portfolio .container,
.contact .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fix for WordPress image alignment */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure navigation is always visible */
.navbar {
    z-index: 999999 !important;
}

/* Fix button styles that might be overridden by WordPress */
.btn-primary, .btn-secondary, .btn-link {
    text-decoration: none !important;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

/* Force font loading */
body, .nav-link, .hero-title, .hero-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Accessibility and screen reader fixes */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
} 