:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --bg-light: #f9f9f9;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 350px;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-text h1 {
    font-size: 1.3rem;
    margin: 0;
    color: white;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-text p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--light-color);
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: var(--primary-color);
    color: white;
}

.main-nav i {
    margin-right: 6px;
    font-size: 0.8rem;
}

.header-contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    flex-shrink: 0;
    min-width: 180px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.phone-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.8rem;
    white-space: nowrap;
    padding: 3px 8px;
    border-radius: 3px;
}

.phone-link:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.phone-link i {
    margin-right: 6px;
    font-size: 0.8rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background-color: var(--primary-color);
}

/* Hero & Page Headers */
.hero,
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), #34495e);
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px;
    background-size: 100% 100% !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

.hero {
    min-height: 600px;
}

.page-header {
    min-height: 400px;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-header::before {
    content: '';
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content,
.page-header-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.hero-buttons .btn-outline {
    border-color: white;
    color: white;
}

.hero-buttons .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-header-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Images */
body.index-page .hero {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('../img/hero_ground_index.jpg');
}

body.about-page .page-header {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('../img/hero_ground_about.jpg');
}

body.uslugi-page .page-header {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('../img/hero_ground_uslugi.jpg');
}

body.pytania-page .page-header {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('../img/hero_ground_pytania.jpg');
}

body.kontakt-page .page-header {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('../img/hero_ground_kontakt.jpg');
}

/* Text Effects */
.hero h2,
.page-header h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 700;
}

.hero .subtitle,
.page-header p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.95);
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Promotion Banner */
.promotion-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.promotion-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: sparkle 3s linear infinite;
}

.promotion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.promotion-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.promotion-badge i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.promotion-text {
    flex: 1;
    text-align: center;
}

.promotion-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.promotion-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.promotion-action {
    flex-shrink: 0;
}

.btn-promotion {
    background: white;
    color: var(--accent-color);
    border: 2px solid white;
    font-weight: 700;
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-promotion:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-promotion i {
    margin-right: 8px;
}


/* About Section - Single Column */
.about-content-single {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.company-intro {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}


.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: left;
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
    background: none; /* Remove background */
    border-radius: 0; /* Remove border radius */
    box-shadow: none; /* Remove box shadow */
}

/* Keep other sections with their own boxes */
.company-details,
.company-philosophy {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.company-philosophy p {
    margin-bottom: 20px;
}

/* Honey section keeps its own styling */
.honey-section {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 15px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation-delay: 0.4s;
}

.honey-content {
    display: flex;
    align-items: center;
    padding: 35px;
    gap: 30px;
}

.honey-text {
    flex: 1;
    color: white;
}

.honey-text h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
}

.honey-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}

.honey-icon {
    flex-shrink: 0;
}

.honey-icon i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

/* CTA section styling */
.cta-section-about {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section-about .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .company-intro,
    .company-details,
    .company-philosophy {
        padding: 20px;
    }

    .honey-content {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .honey-icon {
        order: -1;
    }
}



/* Features & Cards */
.features-grid,
.services-grid,
.contact-info-grid,
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card,
.service-card,
.contact-info-card,
.experience-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover,
.service-card:hover,
.contact-info-card:hover,
.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon,
.service-icon,
.contact-icon,
.experience-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3,
.service-card h3,
.contact-info-card h3,
.experience-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-card li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Specialization */
.specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialization-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.specialization-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s;
}

.specialization-card:hover::before {
    left: 100%;
}

.spec-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialization-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.specialization-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mission and Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.card-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.card-header h3 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.4rem;
}

/* Products & Brands */
.product-categories,
.brands-categories {
    display: grid;
    gap: 50px;
}

.product-category,
.brand-category {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.category-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.category-header h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.brand-item {
    background: var(--bg-light);
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.brand-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.brands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.brand-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-name {
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.brand-name:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.brand-name .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

.brand-name:hover .note {
    color: rgba(255, 255, 255, 0.8);
}

.device-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.device-group {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
}

.device-group h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.device-group i {
    color: var(--primary-color);
}

.device-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.device-group li {
    padding: 6px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 20px;
}

.device-group li:last-child {
    border-bottom: none;
}

.device-group li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Service Details */
.service-details {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-icon {
    font-size: 3rem;
    color: var(--primary-color);
    min-width: 80px;
    text-align: center;
}

.service-detail-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-detail-content ul {
    list-style: none;
    margin-top: 15px;
}

.service-detail-content li {
    padding: 3px 0;
    position: relative;
    padding-left: 20px;
}

.service-detail-content li:before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Contact */
.contact-section {
    overflow-x: hidden;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-map-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-map {
    width: 100%;
    max-width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.contact-map iframe {
    width: 100% !important;
    height: 350px !important;
    max-width: 100% !important;
    border: 0 !important;
    border-radius: 8px;
    display: block;
    box-sizing: border-box;
}

.entrance-photo-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto; 
    min-height: 250px; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    box-sizing: border-box;
}

.entrance-photo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.entrance-photo {
    width: 100%;
    height: auto; 
    max-width: 100%;
    object-fit: contain; 
    object-position: center;
    display: block;
    transition: var(--transition);
    box-sizing: border-box;
}

.entrance-photo-container:hover .entrance-photo {
    transform: scale(1.02); 
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.photo-caption i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .entrance-photo-container {
        min-height: 200px; 
    }
    
    .photo-caption {
        padding: 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .entrance-photo-container {
        min-height: 180px; 
    }
    
    .photo-caption {
        padding: 12px;
        font-size: 0.8rem;
    }
}


/* Shipping Instructions */
.shipping-instructions {
    background-color: var(--bg-light);
}

.instructions-content {
    max-width: 1000px;
    margin: 0 auto;
}

.main-steps {
    margin-bottom: 50px;
}

.main-steps h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.step-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.detailed-instructions {
    margin-bottom: 40px;
}

.detailed-instructions h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
}

.instruction-list {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.instruction-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.instruction-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.instruction-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.instruction-item strong {
    color: var(--secondary-color);
}

.important-note {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: var(--shadow);
}

.important-note i {
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.important-note h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.important-note p {
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* FAQ & Content */
.process-steps-simple {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.process-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.process-text {
    flex: 1;
}

.process-text p {
    margin: 0;
    line-height: 1.6;
}

.advantages-section {
    margin: 50px 0;
}

.advantages-section h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.advantage-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.advantage-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.process-info,
.services-reminder {
    margin: 50px 0;
}

.process-card,
.reminder-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reminder-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.process-card h3,
.reminder-card h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reminder-card h3 {
    color: white;
    margin-bottom: 15px;
}

.reminder-card p {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.reminder-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.reminder-actions .btn-outline {
    border-color: white;
    color: white;
}

.reminder-actions .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.content-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.content-card p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* Contact Disclaimers */
.contact-note,
.contact-disclaimer {
    margin-top: 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-disclaimer {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.note-content,
.disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.note-content i,
.disclaimer-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.disclaimer-content i {
    color: white;
}

.note-content h4,
.disclaimer-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.disclaimer-content h4 {
    color: white;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.contact-buttons .btn-outline {
    border-color: white;
    color: white;
}

.contact-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Quick About */
.quick-about-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.quick-about-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.quick-about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.quick-about-text p {
    margin-bottom: 20px;
}

.quick-about-cta {
    display: flex;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Forms */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4,
.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after,
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.img-rounded {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.seo-hidden-image {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}

.contact-section * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Special Icons */
.fas.fa-coffee {
    color: #8B4513 !important;
}

/* Animations */
@keyframes countUp {
    from { 
        transform: translateY(20px); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes sparkle {
    0% { transform: translateX(-100px) translateY(-100px); }
    100% { transform: translateX(100px) translateY(100px); }
}

.animated {
    animation: fadeInUp 0.6s ease forwards;
}

/* Browser Compatibility */
.hero,
.page-header {
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .logo-container {
        min-width: 320px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .main-nav a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .phone-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 1100px) {
    .logo-text h1 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
}

@media (max-width: 992px) {
    .header-contact-wrapper {
        display: none;
    }
    
    .logo-container {
        min-width: auto;
        gap: 12px;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .main-nav ul {
        gap: 3px;
    }
    
    .main-nav a {
        padding: 8px;
        font-size: 0.75rem;
    }
    
    .main-nav i {
        margin-right: 4px;
        font-size: 0.7rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-item {
        flex-direction: column !important;
        text-align: center;
    }

    .contact-note,
    .contact-disclaimer {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .device-list {
        grid-template-columns: 1fr;
    }

    .cta-section-about {
        flex-direction: column;
        align-items: center;
    }

    .honey-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .honey-icon {
        order: -1;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .logo-text h1 {
        font-size: 1rem;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 5px;
    }

    .main-nav li {
        margin: 0;
        width: 100%;
    }
    
    .main-nav a {
        width: 100%;
        padding: 12px 15px;
        font-size: 0.9rem;
        justify-content: flex-start;
    }
    
    .main-nav i {
        margin-right: 10px;
        font-size: 0.9rem;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .logo {
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }

    .hero {
        text-align: center;
        min-height: 500px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid,
    .services-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .specialization-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-text,
    .company-details,
    .company-philosophy {
        padding: 20px;
    }

    .honey-content {
        padding: 25px;
    }
    
    .mission-card,
    .vision-card,
    .experience-card {
        padding: 25px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .card-header i {
        font-size: 2.5rem;
    }
    
    .quick-about-content {
        padding: 0 15px;
    }
    
    .contact-map,
    .contact-map iframe {
        height: 300px !important;
    }
    
    .entrance-photo {
        height: 180px;
    }
    
    .entrance-photo-container {
        height: 180px;
    }
    
    .photo-caption {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        flex-direction: column;
        text-align: center;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .reminder-actions {
        flex-direction: column;
    }
    
    .reminder-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .promotion-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .promotion-badge {
        order: 1;
    }
    
    .promotion-text {
        order: 2;
    }
    
    .promotion-action {
        order: 3;
    }
    
    .promotion-text h3 {
        font-size: 1.5rem;
    }
    
    .promotion-text p {
        font-size: 1rem;
    }
    
    .btn-promotion {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .specialization-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .cta-section-about {
        flex-direction: column;
    }

    .cta-section-about .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .logo {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 0.9rem;
    }
    
    .logo-text p {
        font-size: 0.65rem;
    }
    
    .contact-section .container {
        padding: 0 15px;
    }
    
    .contact-map,
    .contact-map iframe {
        height: 250px !important;
    }
    
    .entrance-photo {
        height: 160px;
    }
    
    .entrance-photo-container {
        height: 160px;
    }
    
    .photo-caption {
        padding: 12px;
        font-size: 0.8rem;
    }
    
    .mission-card,
    .vision-card,
    .experience-card {
        padding: 20px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .experience-icon {
        font-size: 2.5rem;
    }
}

/* Horizontal Contact Layout for kontakt.html - CLOSER TOGETHER with ORIGINAL TEXT SIZES */
.contact-info-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; /* Reduced gap for closer spacing */
    margin-bottom: 60px;
    max-width: 1100px; /* Limit max width to bring cards closer */
    margin-left: auto;
    margin-right: auto;
}

.contact-info-horizontal .contact-info-card {
    background: white;
    padding: 25px 20px; /* Keep original padding */
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info-horizontal .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-horizontal .contact-icon {
    font-size: 2.5rem; /* ORIGINAL SIZE - same as other pages */
    color: var(--primary-color);
    margin-bottom: 20px; /* ORIGINAL spacing */
}

.contact-info-horizontal .contact-info-card h3 {
    margin-bottom: 15px; /* ORIGINAL spacing */
    color: var(--secondary-color);
    font-size: 1.2rem; /* ORIGINAL SIZE - same as other pages */
}

.contact-info-horizontal .contact-info-card p {
    font-size: 1rem; /* ORIGINAL SIZE - same as other pages */
    line-height: 1.6; /* ORIGINAL line height */
    color: var(--text-color);
}

/* Responsive for smaller screens */
@media (max-width: 1200px) {
    .contact-info-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .contact-info-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .contact-info-horizontal .contact-info-card {
        padding: 30px; /* Keep generous padding on mobile */
    }
}
/* Remove underlines from brand name links */
.brand-name a {
    text-decoration: none;
}

.brand-name a:hover {
    text-decoration: none;
}

/* Additional styling to maintain hover effects without underlines */
.brand-name a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Ensure no underlines on focus state as well */
.brand-name a:focus {
    text-decoration: none;
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
/*Rest*/

/* Reset all brand-name elements to default */
.brand-name {
    padding: 12px 20px !important;
    margin: 0;
    background: var(--bg-light, #f8f9fa) !important;
    border-radius: 8px !important;
    border-left: 4px solid var(--primary-color) !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-color);
}

/* Default hover for all brand names */
.brand-name:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateX(5px);
}

.brand-name:hover .note {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ONLY for brand names that contain links - make the link fill the container */
.brand-name:has(a) {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.brand-name a {
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--bg-light, #f8f9fa);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    border-right: none;
    border-top: none;
    border-bottom: none;
    transition: var(--transition);
    color: var(--text-color);
    font-weight: 500;
    box-sizing: border-box;
    margin: 0;
}

.brand-name a:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateX(5px);
    text-decoration: none;
}

.brand-name a:hover .note {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Disable container hover when it contains a link */
.brand-name:has(a):hover {
    background: transparent !important;
    transform: none !important;
}
/* Mobile navigation active state*/
@media (max-width: 768px) {
    
    /* Make sure mobile toggle button is visible and clickable */
    .mobile-menu-toggle {
        display: block !important;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        z-index: 10001;
        position: relative;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        padding: 10px;
        border-radius: 5px;
        transition: all 0.3s ease;
        min-width: 44px;
        min-height: 44px;
    }
    
    .mobile-menu-toggle:hover {
        background-color: var(--primary-color);
    }
    
    /* Hide desktop navigation on mobile */
    .main-nav {
        display: none;
    }
    
    /* CRITICAL: Show mobile navigation when active */
    .main-nav.active {
        display: block !important;
        position: fixed;
        top: 80px; /* Adjust based on your header height */
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 10000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        animation: slideDown 0.3s ease;
    }
    
    /* Mobile navigation list styling */
    .main-nav.active ul {
        flex-direction: column !important;
        padding: 20px !important;
        gap: 5px !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .main-nav.active li {
        margin: 0 !important;
        width: 100% !important;
    }
    
    /* Mobile navigation links */
    .main-nav.active a {
        width: 100% !important;
        padding: 15px 20px !important;
        font-size: 1rem !important;
        justify-content: flex-start !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
        color: white !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-bottom: 5px !important;
    }
    
    .main-nav.active a:hover,
    .main-nav.active a:focus {
        background-color: var(--primary-color) !important;
        transform: translateX(5px) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }
    
    .main-nav.active i {
        margin-right: 12px !important;
        font-size: 1.1rem !important;
        width: 20px !important;
        text-align: center !important;
    }
    
    /* Mobile toggle button active state */
    .mobile-menu-toggle.active {
        background-color: var(--primary-color) !important;
        transform: rotate(90deg) !important;
    }
}

/* Slide down animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix very small screens */
@media (max-width: 480px) {
    .main-nav.active {
        top: 70px; /* Adjustsmaller header on mobile */
        max-height: calc(100vh - 70px);
    }
    
    .main-nav.active ul {
        padding: 15px !important;
    }
    
    .main-nav.active a {
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
    }
}
/* Enhanced responsive header for very small screens */
@media (max-width: 768px) {
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important; /* Prevent wrapping */
        gap: 10px !important;
        padding: 0 !important;
    }
    
    .logo-container {
        flex: 1 !important; /* Take available space */
        min-width: auto !important; /* Remove fixed min-width */
        max-width: calc(100% - 60px) !important; /* Leave space for hamburger */
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        overflow: hidden !important; /* Prevent text overflow */
    }
    
    .logo {
        height: 45px !important;
        width: auto !important;
        flex-shrink: 0 !important; /* Don't shrink logo */
    }
    
    .logo-text {
        flex: 1 !important;
        min-width: 0 !important; /* Allow text to shrink */
        overflow: hidden !important;
    }
    
    .logo-text h1 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .logo-text p {
        font-size: 0.7rem !important;
        margin: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Hamburger button - always on the right */
    .mobile-menu-toggle {
        flex-shrink: 0 !important; /* Don't shrink */
        margin-left: auto !important; /* Push to right */
        position: relative !important;
        z-index: 10001 !important;
    }
    
    /* Hide other header elements on mobile */
    .header-contact-wrapper,
    .main-nav {
        display: none !important;
    }
}

/* Extra small screens (320px and below) */
@media (max-width: 380px) {
    .container {
        padding: 0 10px !important; /* Reduce container padding */
    }
    
    .header-content {
        gap: 5px !important;
    }
    
    .logo-container {
        max-width: calc(100% - 50px) !important; /* Even less space for hamburger */
        gap: 8px !important;
    }
    
    .logo {
        height: 40px !important; /* Smaller logo */
    }
    
    .logo-text h1 {
        font-size: 0.9rem !important;
    }
    
    .logo-text p {
        font-size: 0.65rem !important;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem !important;
        padding: 8px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }
}

/* Ultra small screens (very old phones) */
@media (max-width: 320px) {
    .logo-text h1 {
        font-size: 0.8rem !important;
        line-height: 1.1 !important;
    }
    
    .logo-text p {
        display: none !important; /* Hide subtitle on very small screens */
    }
    
    .logo {
        height: 35px !important;
    }
    
    .mobile-menu-toggle {
        font-size: 1.2rem !important;
        padding: 6px !important;
        min-width: 36px !important;
        min-height: 36px !important;
    }
}

/* Alternative: Responsive logo text with media queries */
@media (max-width: 420px) and (min-width: 381px) {
    .logo-text h1 {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 360px) and (min-width: 321px) {
    .logo-text h1 {
        font-size: 0.85rem !important;
    }
    
    .logo-text p {
        font-size: 0.6rem !important;
    }
}

/* Fix header height consistency */
@media (max-width: 768px) {
    .main-header {
        padding: 10px 0 !important; /* Reduce vertical padding */
        min-height: 60px !important; /* Ensure consistent height */
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 8px 0 !important;
        min-height: 56px !important;
    }
}

/* Ensure hamburger button stays clickable */
.mobile-menu-toggle {
    position: relative !important;
    z-index: 10001 !important;
    background: none !important;
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
}

/* White bar fix for small mobile devices*/

/* Hero and Page Header adjustments for mobile */
.hero,
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), #34495e);
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px; /* Default for desktop */
    background-size: 100% 100% !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

/* Mobile header height adjustments */
@media (max-width: 768px) {
    .hero,
    .page-header {
        margin-top: 60px !important; /* Adjust for smaller mobile header */
    }
    
    .main-header {
        height: 60px !important; /* Fixed header height on mobile */
    }
    
    /* Ensure no white space */
    .hero {
        min-height: calc(100vh - 60px) !important; /* Full viewport minus header */
    }
    
    .page-header {
        min-height: calc(50vh - 60px) !important; /* Adjust page header height */
        padding: 60px 0 40px !important; /* Account for header height */
    }
}

@media (max-width: 480px) {
    .hero,
    .page-header {
        margin-top: 56px !important; /* Even smaller header on tiny screens */
    }
    
    .main-header {
        height: 56px !important;
    }
    
    .hero {
        min-height: calc(100vh - 56px) !important;
    }
    
    .page-header {
        min-height: calc(40vh - 56px) !important;
        padding: 40px 0 30px !important;
    }
}

/* Alternative fix - Remove margin and use padding instead */
@media (max-width: 768px) {
    .hero,
    .page-header {
        margin-top: 0 !important;
        padding-top: 60px !important; /* Use padding instead of margin */
    }
}

@media (max-width: 480px) {
    .hero,
    .page-header {
        padding-top: 56px !important;
    }
}

/* Ensure header background extends fully */
.main-header {
    background-color: var(--secondary-color) !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
}

/* Company name origin section - Updated with soft, human-readable colors */
.company-name {
    background: linear-gradient(135deg, #6b7280, #4b5563); /* Soft gray gradient for excellent readability */
    color: white;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
    animation-delay: 0.6s;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.company-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.company-name > * {
    position: relative;
    z-index: 2;
}

.company-name h3 {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.company-name h3 i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.company-name p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.company-name p:last-child {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

/* Highlight the key words */
.company-name strong {
    color: #fff;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .company-name {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .company-name h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .company-name p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .company-name p:last-child {
        font-size: 1.1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .company-name {
        padding: 20px;
    }
    
    .company-name h3 {
        font-size: 1.1rem;
    }
    
    .company-name p {
        font-size: 0.95rem;
    }
    
    .company-name p:last-child {
        font-size: 1rem;
        padding: 12px;
    }
}