/* ============================================================
   PAGES.CSS — Shared styles for About, Products, Contact pages
   ============================================================ */

/* ===== WIDE CONTAINER OVERRIDE ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== STOP ALL UNWANTED ROTATIONS ===== */
.logo-icon i,
.logo i,
.hero-tyre-ring i,
.cta-icon {
    animation: none !important;
}

/* nav-theme-toggle — defined in navbar.css */

/* ===== PAGE HEADER ===== */
/* margin-top and padding are controlled by navbar.css */
.page-header {
    background: var(--bg-primary);
    position: relative;
    overflow-x: hidden;
    border-bottom: 1px solid var(--border-color);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-header-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.25);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.15;
    -webkit-text-fill-color: unset;
    background: none;
    background-clip: unset;
}

.page-header h1 span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 500px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.page-header-bg-text {
    position: absolute;
    bottom: -20px;
    right: 40px;
    font-size: 10rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.04;
    letter-spacing: -5px;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

@media (max-width: 768px) {
    .page-header-bg-text {
        font-size: 5rem;
        right: 20px;
        bottom: -10px;
        opacity: 0.03;
    }
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-breadcrumb a {
    color: var(--primary-color);
    font-weight: 600;
}

.page-breadcrumb i {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== SHARED FLOATING BUTTONS ===== */
.fab-cluster {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1100;
}

.fab-btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.35rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    outline: none;
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
    color: white;
}

.fab-call {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.fab-call:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.55);
    color: white;
}

.fab-top {
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.fab-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.55);
}

.fab-map {
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.fab-map:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.55);
}

.fab-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--text-primary);
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ===== ABOUT PAGE ===== */

/* About Intro */
.about-intro {
    padding: 6rem 0;
    background: var(--bg-primary);
    overflow-x: hidden;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.split-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 26px;
    z-index: -1;
}

.split-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

/* Image placeholder when img is broken */
.split-image img::after {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-content .section-label {
    display: inline-block;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.2);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.split-content h2 span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.split-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Stats inside about */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.1);
}

.about-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.about-stat p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mission Vision */
.mission-vision {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(230, 57, 70, 0.015) 40px, rgba(230, 57, 70, 0.015) 80px);
}

.mv-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mv-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.mv-title span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.mv-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-card:hover::before { transform: scaleX(1); }

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.12);
    border-color: rgba(230, 57, 70, 0.2);
}

.mv-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.mv-card:nth-child(1) .mv-icon { background: rgba(230, 57, 70, 0.1); color: #e63946; }
.mv-card:nth-child(2) .mv-icon { background: rgba(255, 193, 7, 0.12); color: #ffc107; }
.mv-card:nth-child(3) .mv-icon { background: rgba(40, 167, 69, 0.1); color: #28a745; }

.mv-card:hover .mv-icon {
    transform: scale(1.15) rotate(10deg);
}

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.trust-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.trust-title span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-item {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    text-align: center;
}

.trust-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 40px rgba(230, 57, 70, 0.1);
    border-color: rgba(230, 57, 70, 0.3);
}

.trust-item > i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: block;
    transition: transform 0.3s ease;
}

.trust-item:hover > i {
    transform: scale(1.2);
}

.trust-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(230, 57, 70, 0.1);
    border-color: rgba(230, 57, 70, 0.3);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.2rem;
}

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== PRODUCTS PAGE ===== */

.products-section {
    padding: 5rem 0 6rem;
    background: var(--bg-primary);
}

@media (max-width: 768px) {
    .products-section {
        padding: 2rem 0 4rem;
    }
}

/* Filter buttons */
.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-secondary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn i {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: rgb(226, 226, 226);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgb(226, 226, 226);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 18px rgba(236, 236, 236, 0.35);
}

.filter-btn.active i { color: rgba(255,255,255,0.8); }

/* Product grid - products page uses 4 col */
.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Enhanced product cards for inner pages */
.products-section .product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.products-section .product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.18);
    border-color: rgba(230, 57, 70, 0.4);
}

.products-section .product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

.products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.products-section .product-card:hover .product-image img {
    transform: scale(1.1);
}

.products-section .product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    color: white;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.35);
    display: none;
}

.products-section .product-badge.badge-new {
    background: linear-gradient(135deg, #00c853, #009624);
}

.products-section .product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.4rem;
}

.products-section .product-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s;
}

.products-section .product-card:hover h3 {
    color: var(--primary-color);
}

.products-section .product-specs {
    font-size: 0.78rem;
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.products-section .product-specs::before {
    content: '';
}

.products-section .product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.products-section .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.products-section .product-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-section .btn-small {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1.1rem;
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.25);
}

.products-section .btn-small:hover {
    transform: translateX(2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
    color: white;
}

/* ===== CONTACT PAGE ===== */

.contact-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    overflow-x: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

/* Contact info cards */
.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.contact-info h2 span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.08);
    transform: translateX(4px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 193, 7, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    color: white;
    transform: scale(1.1);
}

.contact-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

/* Enhanced Contact Form */
.contact-form-wrapper {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 90px;
}

.contact-form h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.contact-form .form-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    margin-bottom: 1.4rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.08);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.error-message {
    display: block;
    font-size: 0.78rem;
    color: var(--primary-color);
    margin-top: 0.4rem;
    font-weight: 500;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(230, 57, 70, 0.45);
}

.form-success {
    display: none;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-success.show { display: block; }

/* Map */
.map-section {
    padding: 0 0 6rem;
    background: var(--bg-primary);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.map-title span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe { filter: none; }

/* ===== ENHANCED CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), #b71c1c, #e65100);
    background-size: 200% 200%;
    animation: cta-gradient-shift 8s ease infinite;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

@keyframes cta-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 60px);
}

.cta-banner h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-banner .cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-banner .btn-white:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: var(--primary-color);
}

.cta-banner .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-banner .btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

/* ===== ENHANCED FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 5rem 0 1.5rem;
    border-top: 3px solid var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo i { color: var(--primary-color); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .products-section .products-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .mv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .split-section { grid-template-columns: 1fr; gap: 3rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-form-wrapper { position: static; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .page-header h1 { font-size: 2.5rem; }
    .products-section .products-grid { grid-template-columns: repeat(2, 1fr); }
    .mv-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .fab-btn { width: 48px; height: 48px; font-size: 1.1rem; }
    .fab-tooltip { display: none; }
}

@media (max-width: 480px) {
    .products-section .products-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .page-header h1 { font-size: 2rem; }
}
