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

:root {
    /* Brand Colors */
    --orange-container: #F26419;
    --orange-dark: #D95610;
    --black-industrial: #1C1C1C;
    --gray-medium: #4A4A4A;
    --gray-light: #E5E5E5;
    --white: #FFFFFF;
    --green-cert: #00A651;
    --green-cta: #59D265;
    --green-cta-hover: #4ABE5A;
    --yellow-attention: #F9A825;

    /* Shadows */
    --shadow-card: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 30px -4px rgba(0, 0, 0, 0.12);
    --shadow-hero: 0 20px 60px -15px rgba(242, 100, 25, 0.3);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black-industrial);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.btn-white {
    background-color: var(--green-cta);
    color: var(--white);
}

.btn-white:hover {
    background-color: var(--green-cta-hover);
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-green {
    background-color: var(--green-cta);
    color: var(--white);
    width: 100%;
}

.btn-green:hover {
    background-color: var(--green-cta-hover);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: rgba(242, 100, 25, 0.1);
    color: var(--orange-container);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
}

.badge-hero {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.badge-light {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(8px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: #211911;
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(242, 100, 25, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-desktop {
    display: none;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--orange-container);
}

.header-cta {
    display: none;
    align-items: center;
    gap: 12px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    background-color: var(--white);
    border-top: 1px solid var(--gray-light);
}

.mobile-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

.mobile-nav-link {
    padding: 12px 16px;
    color: var(--black-industrial);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.mobile-nav-link:hover {
    background-color: rgba(242, 100, 25, 0.1);
}

.mobile-cta {
    margin-top: 12px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    max-width: 100%;
}

.hero-card {
    background: rgba(242, 100, 25, 0.4);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-hero);
    border: 2px solid var(--orange-container);
}

.hero-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin: 12px 0;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-title span {
    color: rgba(255, 255, 255, 0.9);
}

.hero-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.hero-buttons .btn {
    width: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
}

.hero-image img {
    max-width: 240px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, rgba(229, 229, 229, 0.5), var(--white));
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--black-industrial);
    margin: 12px 0;
    line-height: 1.3;
    word-wrap: break-word;
}

.text-primary {
    color: var(--orange-container);
}

.section-subtitle {
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 12px;
    line-height: 1.5;
}

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

.feature-card {
    position: relative;
}

.feature-gradient {
    position: absolute;
    inset: -2px;
    background: linear-gradient(to right, var(--orange-container), var(--orange-dark));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(8px);
}

.feature-card:hover .feature-gradient {
    opacity: 1;
}

.feature-content {
    position: relative;
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    border: 1px solid rgba(229, 229, 229, 0.5);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-content {
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: rgba(242, 100, 25, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    stroke: var(--orange-container);
    width: 28px;
    height: 28px;
}

.feature-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-medium);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-industrial);
    margin-bottom: 10px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.feature-card:hover .feature-title {
    color: var(--orange-container);
}

.feature-description {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.feature-accent {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(to right, var(--orange-container), var(--orange-dark));
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-accent {
    opacity: 1;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background-color: var(--gray-light);
    width: 100%;
    overflow: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.product-image {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    background-color: #fafafa;
}

.product-image img {
    max-height: 140px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--black-industrial);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-dimensions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.dimension-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background-color: rgba(242, 100, 25, 0.1);
    color: var(--orange-container);
    font-size: 10px;
    font-weight: 600;
    border-radius: 16px;
    white-space: nowrap;
}

.dimension-tag svg {
    stroke: var(--orange-container);
    flex-shrink: 0;
}

.product-benefits {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.product-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-medium);
    margin-bottom: 10px;
    line-height: 1.5;
}

.product-benefits svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--green-cert);
    width: 14px;
    height: 14px;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: var(--orange-container);
    background-image: url('assets/map-section-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(242, 100, 25, 0.8);
}

.map-section .container {
    position: relative;
    z-index: 10;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.map-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.map-visual img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.map-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--green-cert);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.map-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--black-industrial);
    white-space: nowrap;
}

.map-content {
    color: var(--white);
    text-align: center;
    padding: 0;
}

.map-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin: 16px 0;
    line-height: 1.3;
    word-wrap: break-word;
}

.map-title span {
    color: var(--white);
}

.map-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.map-text strong {
    color: var(--white);
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    text-align: center;
    padding: 16px 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Franchise Section */
.franchise-section {
    padding: 48px 0;
    background-color: rgba(229, 229, 229, 0.3);
    width: 100%;
    overflow: hidden;
}

.franchise-card {
    position: relative;
    background: linear-gradient(135deg, var(--orange-container), var(--orange-dark));
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--shadow-card-hover);
    overflow: hidden;
}

.franchise-bg-decoration {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.franchise-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.franchise-text {
    text-align: center;
}

.franchise-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
    word-wrap: break-word;
}

.franchise-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.franchise-image {
    display: none;
    justify-content: center;
}

.franchise-image img {
    max-height: 200px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: rgba(229, 229, 229, 0.3);
    width: 100%;
    overflow: hidden;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

.about-image {
    display: flex;
    justify-content: center;
    order: 1;
}

.about-image img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.about-text {
    text-align: center;
    order: 2;
}

.about-text p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.value-card {
    position: relative;
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.value-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--orange-container), var(--orange-dark));
}

.value-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.value-icon {
    width: 44px;
    height: 44px;
    background-color: var(--orange-container);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    flex-shrink: 0;
}

.value-icon svg {
    stroke: var(--white);
    width: 22px;
    height: 22px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-industrial);
}

.value-card p {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.values-list {
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-medium);
    margin-bottom: 8px;
    line-height: 1.5;
}

.values-list svg {
    flex-shrink: 0;
    stroke: var(--green-cert);
    width: 14px;
    height: 14px;
}

/* Media Section */
.media-section {
    padding: 60px 0;
    background-color: var(--gray-light);
    width: 100%;
    overflow: hidden;
}

.media-section .section-title {
    font-size: 24px;
    line-height: 1.4;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.media-image {
    display: flex;
    justify-content: center;
}

.award-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    max-width: 100%;
}

.award-card img {
    max-width: 100%;
    height: auto;
}

.media-content {
    text-align: center;
    padding: 0;
}

.media-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.media-icon {
    width: 44px;
    height: 44px;
    background-color: var(--orange-container);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    flex-shrink: 0;
}

.media-icon svg {
    stroke: var(--white);
    width: 22px;
    height: 22px;
}

.media-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-industrial);
    line-height: 1.3;
}

.media-content p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.media-content strong {
    color: var(--black-industrial);
    font-weight: 700;
}

.media-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.media-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--gray-medium);
    margin-bottom: 12px;
    line-height: 1.5;
}

.list-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--orange-container);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Footer */
.footer {
    background-color: var(--black-industrial);
    color: var(--white);
    width: 100%;
    overflow: hidden;
}

.footer-cta {
    background: linear-gradient(to right, var(--orange-container), var(--orange-dark));
    padding: 40px 0;
    width: 100%;
    overflow: hidden;
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-cta-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.footer-cta-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer-main {
    padding: 48px 0;
    width: 100%;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 20px;
}

.footer-brand p {
    font-size: 13px;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.badge-abf {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
}

.badge-abf svg {
    stroke: var(--green-cert);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.badge-abf span {
    font-size: 12px;
    font-weight: 600;
}

.selo-abf {
    height: 44px;
    width: auto;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: left;
}

.footer-links ul {
    list-style: none;
    text-align: left;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange-container);
}

.contact-list {
    list-style: none;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: flex-start;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(242, 100, 25, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--orange-container);
    width: 18px;
    height: 18px;
}

.contact-label {
    font-size: 11px;
    color: #9CA3AF;
}

.contact-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    word-break: break-word;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--orange-container);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    font-size: 12px;
    color: #9CA3AF;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-legal a {
    transition: color 0.3s ease;
    font-size: 12px;
}

.footer-legal a:hover {
    color: var(--orange-container);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-button img {
    width: 28px;
    height: 28px;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Responsive Design - Mobile Small (320px+) */
@media (min-width: 320px) {
    .container {
        padding: 0 16px
    }
}

/* Responsive Design - Mobile Medium (375px+) */
@media (min-width: 375px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 26px;
    }

    .hero-card {
        padding: 22px;
    }

    .hero-text {
        font-size: 13px;
    }

    .badge {
        font-size: 13px;
        padding: 7px 14px;
    }
}

/* Responsive Design - Mobile Large (425px+) */
@media (min-width: 425px) {
    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-image img {
        max-width: 260px;
    }

    .hero-text {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
        padding: 11px 22px;
    }
}

/* Responsive Design - Tablet Small (540px+) */
@media (min-width: 540px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-card {
        padding: 24px;
    }

    .hero-image img {
        max-width: 280px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

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

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Responsive Design - Tablet (768px+) */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .header-content {
        height: 72px;
    }

    .logo img {
        height: 42px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-card {
        padding: 28px;
    }

    .hero-buttons {
        flex-direction: row;
        max-width: 600px;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: auto;
        flex: 1;
    }

    .hero-image img {
        max-width: 300px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .why-choose-section,
    .products-section,
    .map-section,
    .about-section,
    .media-section {
        padding: 80px 0;
    }

    .franchise-section {
        padding: 64px 0;
    }

    .franchise-image {
        display: flex;
    }

    .map-visual img {
        max-width: 350px;
    }

    .about-image img {
        max-width: 350px;
    }

    .media-grid {
        grid-template-columns: 1fr 1fr;
    }

    .media-content {
        text-align: left;
    }

    .media-header {
        justify-content: flex-start;
    }

    .footer-cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .map-content {
        text-align: left;
    }

    .map-title {
        font-size: 28px;
    }

    .franchise-title {
        font-size: 24px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* Responsive Design - Tablet Large (900px+) */
@media (min-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

/* Responsive Design - Desktop Small (1024px+) */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-section {
        padding-top: 80px;
        align-items: center;
    }

    .nav-desktop {
        display: flex;
    }

    .header-cta {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .header-content {
        height: 80px;
    }

    .logo img {
        height: 48px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero-card {
        padding: 32px;
    }

    .hero-image img {
        max-width: 350px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 42px;
    }

    .map-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-visual img {
        max-width: 400px;
    }

    .map-title {
        font-size: 36px;
    }

    .franchise-content {
        grid-template-columns: 1.2fr 1fr;
    }

    .franchise-text {
        text-align: left;
    }

    .franchise-title {
        font-size: 28px;
    }

    .about-intro {
        grid-template-columns: 1fr 1fr;
    }

    .about-image {
        order: 1;
    }

    .about-text {
        order: 2;
        text-align: left;
    }

    .about-image img {
        max-width: 400px;
    }

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

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 25px;
    }

    .footer-brand {
        grid-column: auto;
        text-align: left;
    }

    .footer-badges {
        align-items: flex-start;
    }

    .footer-logo {
        margin: 0 0 20px 0;
    }

    .footer-links h4,
    .footer-contact h4 {
        text-align: left;
    }

    .footer-links ul {
        text-align: left;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-card {
        padding: 20px 12px;
    }
}

/* Responsive Design - Desktop Medium (1200px+) */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-card {
        padding: 36px;
    }

    .section-title {
        font-size: 48px;
    }

    .hero-image img {
        max-width: 400px;
    }

    .map-title {
        font-size: 40px;
    }

    .map-visual img {
        max-width: 450px;
    }

    .franchise-title {
        font-size: 30px;
    }
}

/* Responsive Design - Desktop Large (1440px+) */
@media (min-width: 1440px) {
    .container {
        padding: 0 48px;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-image img {
        max-width: 420px;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-button,
    .scroll-indicator {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
