/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e67e22;
    --accent-light: #f39c12;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-hover: 0 30px 80px rgba(0,0,0,0.12);
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tag {
    display: inline-block;
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
    background: #1da85a;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: #e67e22;
}

.logo span:first-child {
    color: #fff;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

.main-nav ul li a {
    color: rgba(255,255,255,0.8);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #fff;
    background: rgba(230, 126, 34, 0.2);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-wa-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-wa-header:hover {
    background: #1da85a;
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(230,126,34,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(230, 126, 34, 0.15);
    color: #f39c12;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f39c12;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    padding: 14px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1a1a2e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: #25d366;
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    fill: #fff;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: 100px 0 80px;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #eee;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #e67e22;
}

.product-card.featured {
    border-color: #e67e22;
    box-shadow: var(--shadow);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #e67e22;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-body {
    padding: 24px;
}

.product-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-body p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.product-specs {
    list-style: none;
    margin-bottom: 18px;
}

.product-specs li {
    font-size: 0.85rem;
    color: #444;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-specs li i {
    color: #e67e22;
}

.btn-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
}

.btn-product:hover {
    background: #1da85a;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid #eee;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #e67e22;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 126, 34, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: #e67e22;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: #e67e22;
    color: #fff;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .tag {
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 16px;
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0 30px;
}

.mission-item {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    border-left: 4px solid #e67e22;
}

.mission-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mission-item h4 i {
    color: #e67e22;
}

.mission-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-experience {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #1a1a2e;
    color: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f39c12;
    display: block;
}

.exp-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 800;
}

.cta-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta:hover {
    background: #1da85a;
    transform: scale(1.03);
}

.visitor-badge {
    text-align: center;
    margin-top: 30px;
    opacity: 0.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0f0f1a;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 35px;
    width: auto;
}

.footer-logo span {
    color: #e67e22;
}

.footer-logo span:first-child {
    color: #fff;
}

.footer-col h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li i {
    color: #e67e22;
    min-width: 18px;
}

.footer-col ul li a {
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #e67e22;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #fff;
}

.footer-social a:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #e67e22;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.float-tooltip {
    position: absolute;
    right: 75px;
    background: #1a1a2e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.float-wa:hover .float-tooltip {
    opacity: 1;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(230,126,34,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 550px;
    margin: 0 auto 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: #f39c12;
}

.breadcrumb .current {
    color: #f39c12;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* ============================================
   GALLERY FILTER
   ============================================ */
.gallery-filter-section {
    padding: 30px 0 10px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
    border-color: #e67e22;
    color: #e67e22;
}

.filter-btn.active {
    background: #e67e22;
    border-color: #e67e22;
    color: #fff;
}

/* ============================================
   GALLERY MAIN
   ============================================ */
.gallery-main {
    padding: 40px 0 60px;
    background: #fff;
}

.gallery-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item-masonry {
    break-inside: avoid;
    transition: var(--transition);
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #f8f9fa;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.gallery-zoom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e67e22;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.gallery-zoom:hover {
    background: #d35400;
    transform: scale(1.1);
}

.gallery-empty {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.gallery-empty i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 16px;
}

.gallery-empty h3 {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 8px;
}

.gallery-empty p {
    color: #999;
}

/* ============================================
   CATALOG
   ============================================ */
.catalog-main {
    padding: 40px 0 60px;
    background: #fff;
}

.catalog-pdf-wrapper {
    background: #f8f9fa;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #eee;
}

.catalog-pdf-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 12px;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1a1a2e;
}

.toolbar-left i {
    color: #e67e22;
    font-size: 1.3rem;
}

.btn-pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e67e22;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-pdf-download:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.catalog-pdf-container {
    padding: 20px;
    background: #fff;
}

.catalog-pdf-container embed {
    border-radius: 12px;
    border: 1px solid #eee;
}

.catalog-pdf-fallback {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

.catalog-pdf-fallback i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 16px;
}

.catalog-pdf-fallback p {
    color: var(--gray);
    margin-bottom: 16px;
}

.catalog-contact {
    margin-top: 40px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 24px 30px;
    border-radius: var(--radius);
    border: 1px solid #eee;
    flex-wrap: wrap;
}

.contact-box i {
    font-size: 2rem;
    color: #e67e22;
}

.contact-box h4 {
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-box p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-box .btn-primary {
    margin-left: auto;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-main {
    padding: 40px 0 60px;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 126, 34, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #e67e22;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-weight: 600;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail p {
    font-weight: 500;
    color: #1a1a2e;
}

.contact-social h4 {
    font-weight: 600;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    transition: var(--transition);
}

.social-links a:hover {
    background: #e67e22;
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid #eee;
}

.form-header {
    margin-bottom: 24px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.form-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}

.form-group label i {
    color: #e67e22;
    margin-right: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e67e22;
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #e67e22;
    color: #fff;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 4px;
}

.form-note i {
    color: #e67e22;
}

/* Contact Map */
.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #eee;
}

.contact-map iframe {
    display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image-wrapper img {
        max-height: 350px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-mission {
        grid-template-columns: 1fr;
    }
    
    .about-experience {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-box .btn-primary {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1a1a2e;
        padding: 80px 20px 30px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 14px 16px;
        color: rgba(255,255,255,0.8);
    }
    
    .main-nav ul li a:hover {
        background: rgba(230,126,34,0.15);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .btn-wa-header span {
        display: none;
    }
    
    .btn-wa-header {
        padding: 10px 14px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid-masonry {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .float-wa {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .catalog-pdf-toolbar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .toolbar-left {
        justify-content: center;
    }
    
    .btn-pdf-download {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-masonry {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    .floating-badge {
        display: none;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .gallery-overlay {
        padding: 14px;
    }
    
    .gallery-info h3 {
        font-size: 0.9rem;
    }
    
    .gallery-info p {
        font-size: 0.75rem;
    }
    
    .gallery-zoom {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}
/* ============================================
   CONTACT MAP (NEW)
   ============================================ */
.contact-map-wrapper {
    margin-top: 40px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map-header {
    padding: 24px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.contact-map-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-map-header h3 i {
    color: #e67e22;
    font-size: 1.3rem;
}

.contact-map-header p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 4px;
}

.contact-map {
    width: 100%;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.contact-map-actions {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    background: #fff;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e67e22;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-map:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.btn-map-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1a1a2e;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
}

.btn-map-outline:hover {
    border-color: #e67e22;
    color: #e67e22;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE MAPS
   ============================================ */
@media (max-width: 768px) {
    .contact-map iframe {
        height: 280px;
    }
    
    .contact-map-header {
        padding: 16px 20px;
    }
    
    .contact-map-actions {
        flex-direction: column;
        padding: 12px 16px;
    }
    
    .btn-map,
    .btn-map-outline {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-map iframe {
        height: 220px;
    }
    
    .contact-map-header h3 {
        font-size: 1rem;
    }
}