/* FRASK INDUSTRIES - Main Stylesheet */
/* ================================== */

/* CSS Variables */
:root {
    --primary-red: #c41e3a;
    --primary-red-light: #d63856;
    --primary-red-dark: #a01729;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --border-gray: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.2);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --border-radius: 8px;
    --border-radius-large: 15px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

p {
    margin-bottom: 1rem;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 250px;
    transition: var(--transition-fast);
}

/* Responsive logo sizes */
@media (min-width: 768px) {
    .logo-image {
        height: 100px;
        max-width: 400px;
    }
}

@media (min-width: 1024px) {
    .logo-image {
        height: 140px;
        max-width: 500px;
    }
}

@media (min-width: 1200px) {
    .logo-image {
        height: 160px;
        max-width: 600px;
    }
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-and-lang {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

nav a:hover,
nav a.active {
    color: var(--primary-red);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-red);
    transition: width var(--transition-fast);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 8px 12px;
    border: 1px solid var(--border-gray);
    background: var(--white);
    color: var(--medium-gray);
    cursor: pointer;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-submit {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.05) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 0 80px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Page Header (for subpages) */
.page-header {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 200px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.03) 0%, 
        rgba(255, 255, 255, 0.97) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-header-content h1 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-header-content p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* Brands Preview Section */
.brands-preview {
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.brand-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    position: relative;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.brand-logo-container {
    padding: 30px 30px 0;
    text-align: center;
    background: var(--light-gray);
}

.brand-logo-img {
    height: 100px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* Responsive brand logo sizes */
@media (min-width: 768px) {
    .brand-logo-img {
        height: 120px;
    }
}

@media (min-width: 1024px) {
    .brand-logo-img {
        height: 150px;
    }
}

@media (min-width: 1200px) {
    .brand-logo-img {
        height: 180px;
    }
}

.brand-hero-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.brand-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.brand-card:hover .brand-hero-img {
    transform: scale(1.05);
}

.brand-content {
    padding: 30px;
}

.brand-content h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.brand-desc {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.feature-card:hover .feature-img {
    transform: scale(1.1);
}

.feature-content {
    padding: 30px;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    margin: -50px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.feature-content h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.feature-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Heritage Section */
.heritage {
    background: var(--white);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.heritage-text h2 {
    color: var(--primary-red);
    margin-bottom: 30px;
}

.heritage-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.heritage-image {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.heritage-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details-grid {
    display: grid;
    gap: 30px;
}

.contact-item {
    background: var(--light-gray);
    border-radius: var(--border-radius-large);
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: var(--transition-fast);
}

.contact-item:hover {
    background: #efefef;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.contact-text h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-text p {
    color: var(--medium-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary-red-dark);
    text-decoration: underline;
}

.contact-note,
.location-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--medium-gray);
    margin-top: 10px;
}

/* Contact Form */
.contact-form-section {
    background: var(--light-gray);
    border-radius: var(--border-radius-large);
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.contact-form h2 {
    color: var(--primary-red);
    margin-bottom: 30px;
    font-size: 2rem;
}

.professional-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    gap: 12px;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
    font-weight: normal;
}

.privacy-link {
    display: block;
    margin-top: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Location Info Section */
.location-info {
    background: var(--light-gray);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text h2 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.location-text > p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.location-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    font-style: normal;
    font-family: Arial, sans-serif;
}

.benefit-icon::before {
    content: '✓';
    font-size: 1.8rem;
    font-weight: bold;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    font-style: normal;
    font-family: Arial, sans-serif;
}

.contact-icon::before {
    content: '•';
    font-size: 2rem;
    font-weight: bold;
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.quality-icon::before {
    content: '●';
    font-size: 3rem;
}

.mission-icon,
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    color: var(--white);
    font-style: normal;
    font-family: Arial, sans-serif;
}

.mission-icon::before,
.feature-icon::before {
    content: '•';
    font-size: 2.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: -50px auto 20px;
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
}

.feature-icon::before {
    font-size: 2rem;
}

/* Remove emoji text content from icons */
.highlight-icon,
.benefit-icon,
.contact-icon,
.mission-icon,
.feature-icon {
    position: relative;
}

/* Icons should display their content normally */
.quality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.benefit-item h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-image {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.location-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Company Story Section */
.company-story {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    color: var(--primary-red);
    margin-bottom: 30px;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-image {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-caption {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.image-caption p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Mission & Values Section */
.mission-values {
    background: var(--light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.mission-card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Company Timeline Section */
.company-timeline {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 2;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-year {
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
}

.timeline-year {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-red);
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--primary-red);
}

.timeline-item:nth-child(odd) .timeline-year::after {
    right: -50px;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-year::after {
    left: -50px;
    transform: translateY(-50%);
}

.timeline-content {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.timeline-content:hover {
    background: #efefef;
    transform: scale(1.02);
}

.timeline-content h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.timeline-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--light-gray);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.choose-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.choose-card:hover::before {
    transform: scaleX(1);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.choose-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1;
}

.choose-card h3 {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.choose-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    text-align: center;
}

.about-cta .cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.about-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Brands Detailed Section */
.brands-detailed {
    background: var(--white);
}

.brand-detail-section {
    padding: 80px 0;
}

.brand-detail-section:nth-child(even) {
    background: var(--light-gray);
}

.brand-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-detail-grid.reverse {
    direction: rtl;
}

.brand-detail-grid.reverse > * {
    direction: ltr;
}

.brand-logo-large {
    margin-bottom: 30px;
}

.brand-logo-large img {
    height: 80px;
    width: auto;
}

.brand-detail-content h2 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 2rem;
}

.brand-detail-content > p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.brand-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.brand-detail-section:nth-child(even) .highlight-item {
    background: var(--white);
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.highlight-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    font-style: normal;
    font-family: Arial, sans-serif;
}

.highlight-icon::before {
    content: '✓';
    font-size: 1.8rem;
    font-weight: bold;
}

.highlight-text h4 {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.highlight-text p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.brand-detail-image {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.brand-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Japanese Quality Section */
.japanese-quality {
    background: var(--light-gray);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.quality-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.quality-card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.quality-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Form Security Styles */
.form-message {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Disable selection for form security elements */
.professional-form input[type="hidden"] {
    display: none;
}

/* Button disabled state */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Enhanced button loading state */
.btn-submit:disabled::after {
    content: '';
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
    display: inline-block;
}

@keyframes button-loading-spinner {
    from { transform: rotate(0turn); }
    to { transform: rotate(1turn); }
}

/* GDPR Cookie Banner */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 20px 0;
    border-top: 3px solid var(--primary-red);
}

.gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.gdpr-text h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.gdpr-text p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.gdpr-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.gdpr-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.gdpr-link:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--medium-gray);
    color: #cccccc;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .heritage-content {
        gap: 40px;
    }
    
    .contact-grid,
    .location-grid,
    .story-grid,
    .brand-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .brand-detail-grid.reverse {
        direction: ltr;
    }
    
    .brand-logo-large img {
        height: 60px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) .timeline-year,
    .timeline-item:nth-child(odd) .timeline-year {
        order: 1;
        text-align: left;
        font-size: 2.5rem;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        order: 2;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) .timeline-year::after,
    .timeline-item:nth-child(odd) .timeline-year::after {
        left: -50px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav-and-lang {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .heritage-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .heritage-text {
        order: 2;
    }
    
    .heritage-image {
        order: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .story-grid {
        text-align: center;
    }
    
    .story-content {
        order: 2;
    }
    
    .story-image {
        order: 1;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        font-size: 2rem;
    }
    
    .timeline-item:nth-child(even) .timeline-year::after,
    .timeline-item:nth-child(odd) .timeline-year::after {
        left: -35px;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .gdpr-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .gdpr-buttons {
        flex-wrap: wrap;
        width: 100%;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 100px 0 30px;
    }
    
    .page-header-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .feature-content {
        padding: 20px;
    }
    
    .brand-content {
        padding: 20px;
    }
    
    .brand-detail-content {
        order: 2;
    }
    
    .brand-detail-image {
        order: 1;
    }
    
    .brand-detail-image img {
        height: 300px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-section {
        padding: 25px 15px;
    }
    
    .story-img {
        height: 300px;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .timeline-item {
        padding-left: 50px;
        margin-bottom: 35px;
    }
    
    .timeline-year {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .timeline-item:nth-child(even) .timeline-year::after,
    .timeline-item:nth-child(odd) .timeline-year::after {
        left: -30px;
        width: 15px;
        height: 15px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .choose-number {
        font-size: 2.5rem;
    }
    
    .choose-card {
        padding: 30px 20px;
    }
    
    .gdpr-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .gdpr-buttons .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}