/* ===================================
   KAILASH STEELS - EXACT DESIGN
   =================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f1f41;
    --primary-blue: #1e40af;
    --bright-blue: #3b82f6;
    --accent-orange: #ff6b35;
    --accent-green: #22c55e;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-secondary: #4b5563;
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #ffb366 100%);
    --gradient-dark: linear-gradient(135deg, #0f1f41 0%, #1a3d6e 100%);
}

/* ==================== TAGLINE BANNER ==================== */
.tagline-banner {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--primary-dark) 100%);
    padding: 0.8rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tagline-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.tagline-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
}

.tagline-icon {
    color: var(--accent-orange);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.tagline-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff 0%, #ffb366 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* ==================== KEYFRAME ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(30, 64, 175, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(30, 64, 175, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bgShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes cardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER AND NAVIGATION ==================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Contact Bar */
.top-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, #1a2d5e 100%);
    color: var(--white);
    padding: 0.6rem 0;
    border-bottom: 2px solid var(--accent-orange);
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar-item i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.top-bar-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-item a:hover {
    color: var(--accent-orange);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

/* WhatsApp Icon Top Bar Styling */
.social-icon.whatsapp-icon-top,
.social-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #20ba5f);
    color: white;
}

.social-icon.whatsapp-icon-top:hover,
.social-icon.whatsapp-icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.2) rotate(10deg);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Facebook Icon */
.social-icon.facebook-icon {
    background: linear-gradient(135deg, rgba(59, 89, 152, 0.3), rgba(59, 89, 152, 0.1));
    border-color: rgba(59, 89, 152, 0.5);
}

.social-icon.facebook-icon:hover {
    background: linear-gradient(135deg, #3b5998, #3b5998);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 89, 152, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Instagram Icon */
.social-icon.instagram-icon {
    background: linear-gradient(135deg, rgba(229, 72, 114, 0.3), rgba(142, 46, 121, 0.3));
    border-color: rgba(229, 72, 114, 0.5);
}

.social-icon.instagram-icon:hover {
    background: linear-gradient(135deg, #E4405F 0%, #FD1D1D 25%, #F77737 50%, #FCAF45 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 72, 114, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-text p {
    color: var(--accent-orange);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transition: width 0.4s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.admin-btn {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 5px !important;
    border: none !important;
    border-bottom: none !important;
}

.admin-btn:hover {
    background-color: #1d4ed8 !important;
    color: var(--white) !important;
}

.btn-get-quote {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-get-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(30, 64, 175, 0.4);
    border-color: var(--white);
}

.btn-get-quote i {
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hamburger Active State */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -8px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3d6e 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 64, 175, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c51 100%);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: slideInDown 0.6s ease;
}

.hero-badge i {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.hero-title .highlight-blue {
    color: #60a5fa;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    z-index: 3;
}

.btn-hero-primary,
.btn-hero-secondary {
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.65rem 1.4rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    min-width: auto;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    min-width: auto;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--white);
    transition: var(--transition-smooth);
    animation: slideInUp 0.6s ease backwards;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-card p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.5;
}

.custom-mfg,
.certified {
    background: rgba(255, 107, 53, 0.1);
}

.custom-mfg i,
.certified i {
    color: var(--accent-orange);
}

.structural,
.wide-stock {
    background: rgba(59, 130, 246, 0.15);
}

.structural i,
.wide-stock i {
    color: var(--bright-blue);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 3rem 0;
    color: var(--white);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-box {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.about-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-left p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-left strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
}

.about-feature i {
    color: var(--accent-green);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.about-feature h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-card {
    background: var(--bg-light);
    border-left: 4px solid var(--accent-orange);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-orange);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 10px;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c51 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

/* ==================== INVENTORY/PRODUCTS SECTION ==================== */
.inventory-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.inventory-section h3 {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 0.5rem;
    padding: 0 20px;
}

.inventory-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.inventory-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.inventory-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.inventory-grid .product-card:nth-child(2) { animation-delay: 0.2s; }
.inventory-grid .product-card:nth-child(3) { animation-delay: 0.3s; }
.inventory-grid .product-card:nth-child(4) { animation-delay: 0.4s; }
.inventory-grid .product-card:nth-child(5) { animation-delay: 0.5s; }
.inventory-grid .product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease backwards;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.product-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-smooth);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(59, 130, 246, 0.2));
    transform: scale(1.1) rotate(10deg);
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.product-link:hover {
    gap: 0.8rem;
    color: var(--accent-orange);
}

.product-link i {
    font-size: 0.8rem;
}

.catalog-btn-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-download-catalog {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-download-catalog:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-download-catalog i {
    font-size: 0.9rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: nowrap;
    position: relative;
    z-index: 2;
    align-items: center;
}

.btn-cta-call,
.btn-cta-whatsapp {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-call {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-cta-call:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-cta-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-cta-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-cta-contact {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--bright-blue) 100%);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    min-width: auto;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-contact:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4);
}

.btn-cta-explore {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    min-width: auto;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-explore:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}


/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d1629 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange), var(--accent-green));
}

.footer-bg-accent {
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-column {
    animation: slideUp 0.6s ease backwards;
}

.footer-column:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.3s;
}

.footer-column h3,
.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
}

.footer-column h4 i {
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.footer-column:hover h3,
.footer-column:hover h4 {
    color: var(--accent-orange);
}

.footer-brand-column {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    display: block;
    flex-shrink: 0;
}

.footer-logo h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.1;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid var(--white);
    font-size: 0.95rem;
}

.footer-social a:nth-child(1) {
    background: #25d366;
}

.footer-social a:nth-child(2) {
    background: #1877f2;
}

.footer-social a:nth-child(3) {
    background: #e4405f;
}

.footer-social a:hover {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.link-arrow {
    opacity: 0;
    transform: translateX(-5px);
    display: inline-block;
    transition: var(--transition-smooth);
    color: var(--accent-orange);
}

.footer-column ul li a:hover .link-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.footer-column ul li a:hover {
    color: var(--accent-orange);
}

/* Contact Info Styling */
.contact-info {
    list-style: none !important;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    animation: slideUp 0.6s ease backwards;
}

.contact-info li:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-info li:nth-child(3) {
    animation-delay: 0.2s;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8c51);
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: var(--transition-smooth);
}

.contact-info li:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
}

.contact-info li div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    margin: 0;
}

.contact-info li a:hover {
    color: var(--accent-orange);
}

.contact-info li:hover {
    transform: translateX(8px);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    flex: 1;
    min-width: 200px;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0.3rem 0;
}

.footer-tagline {
    color: var(--accent-orange);
    font-weight: 600;
    letter-spacing: 0.5px;
    font-style: italic;
}

.footer-badge {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    color: #ffb366;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.badge-item:hover {
    background: rgba(255, 107, 53, 0.25);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.badge-item i {
    font-size: 1rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .tagline-content {
        gap: 0.8rem;
    }

    .tagline-text {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

    .tagline-icon {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand-column {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-badge {
        justify-content: center;
        width: 100%;
    }

    .contact-info li {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand-column {
        grid-column: span 1;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-column h3,
    .footer-column h4 {
        font-size: 0.95rem;
    }

    .footer-bottom-content p {
        font-size: 0.85rem;
    }

    /* Contact Page Extra Mobile */
    .contact-info-cards {
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .btn-submit {
        padding: 0.95rem;
        font-size: 0.9rem;
    }

    .contact-features h3 {
        font-size: 1.3rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .feature-text h4 {
        font-size: 0.9rem;
    }

    .detail-item {
        font-size: 0.9rem;
    }

    .badge-item {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-section {
    padding: 4rem 0 5rem;
    background: var(--white);
    position: relative;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: var(--transition-smooth);
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.info-card:nth-child(4) {
    animation-delay: 0.4s;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.info-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.15);
}

.info-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.location-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
    color: white;
}

.phone-icon {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    color: white;
}

.email-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hours-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.info-card:hover .info-card-icon {
    transform: scale(1.15) rotateY(360deg);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    z-index: 1;
    position: relative;
}

.card-link:hover {
    gap: 1rem;
    color: var(--bright-blue);
}

.card-link i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.card-status {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    z-index: 1;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.contact-form-wrapper {
    animation: fadeInUp 0.8s ease;
}

.form-title {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(229, 231, 235, 0.6);
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-form .form-group {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.8);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--bright-blue);
    background-color: rgba(255, 255, 255, 0.95);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
    background-color: rgba(255, 255, 255, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c4d 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
    z-index: 0;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.35);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Contact Features Section */
.contact-features {
    animation: fadeInUp 1s ease;
    animation-delay: 0.3s;
}

.contact-features h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(249, 250, 251, 0.7);
    border-left: 4px solid var(--primary-blue);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(219, 234, 254, 0.4);
    transform: translateX(8px);
    border-left-color: var(--bright-blue);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--bright-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.hero-cta-buttons .btn-primary {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c4d 100%);
    color: white;
    border: 2px solid #ff6b35;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.hero-cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #ff5518 0%, #ff7a33 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.hero-cta-buttons .btn-secondary {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: transparent;
    color: var(--bright-blue);
    border: 2px solid var(--bright-blue);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    margin-left: 1rem;
}

.hero-cta-buttons .btn-secondary:hover {
    background: var(--bright-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.hero-cta-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Map Section */
.map-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 5rem;
    animation: fadeInUp 1s ease;
}

.map-section .section-header {
    margin-bottom: 3rem;
}

.map-container {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 450px;
    border: 2px solid #e5e7eb;
    transition: var(--transition-smooth);
}

.map-container:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--bright-blue);
}

.map-embed {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
    transition: var(--transition-smooth);
}

.map-container:hover .map-embed {
    filter: brightness(1.05);
}

.location-details {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid #e5e7eb;
    position: relative;
}

.location-details::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--bright-blue) 100%);
}

.location-card {
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-card h4 i {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.detail-item {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
}

.detail-item:hover {
    color: var(--text-dark);
    transform: translateX(4px);
}

.detail-item i {
    color: var(--primary-blue);
    font-size: 1rem;
    width: 20px;
}

.rating {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating i {
    color: #fbbf24;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.rating:hover i {
    transform: scale(1.2);
}

.rating span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin-left: 0.5rem;
}
    color: var(--primary-blue);
    font-size: 1rem;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3d6e 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==================== PRODUCTS PAGE STYLES ==================== */

.products-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3d6e 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.products-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.products-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.products-grid-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-item {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease backwards;
    position: relative;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    z-index: 1;
}

.product-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    border-color: var(--primary-blue);
}

.product-image-grid {
    width: 100%;
    height: 250px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    background: #f5f5f5;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.product-image-grid img:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.product-item:hover .product-image-grid img {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: 280px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    z-index: 10;
    pointer-events: none;
    opacity: 0.5;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 9;
    opacity: 0.3;
}

.product-image img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 5;
    display: block;
}

.product-item:hover .product-image img {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #9ca3af;
    font-size: 3rem;
    position: absolute;
    inset: 0;
    z-index: 2;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    margin-top: 0;
    font-weight: 800;
    font-family: var(--font-heading);
}

.product-category {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    margin-bottom: 0.8rem;
    margin-top: 0;
    text-transform: uppercase;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    margin-top: 0;
    font-style: italic;
}

.product-specs {
    margin-top: auto;
}

.product-specs h4 {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-specs h4 i {
    color: var(--accent-orange);
    margin-right: 0.4rem;
    font-size: 0.85rem;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    padding-left: 1.3rem;
    position: relative;
    line-height: 1.4;
}

.product-specs li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.custom-order-section {
    background: var(--accent-orange);
    color: var(--white);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.custom-order-content {
    flex: 1;
}

.custom-order-section h2 {
    font-size: 1.8rem;
    margin: 0 0 0.8rem 0;
    font-weight: 800;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.custom-order-section p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
}

.btn-custom-order {
    background: var(--white);
    color: var(--accent-orange);
    padding: 0.85rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition-smooth);
    border: 2px solid var(--white);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-custom-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: var(--white);
}
}

.btn-custom-order:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive for products grid */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }
    
    .custom-order-section {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .btn-custom-order {
        width: 100%;
        text-align: center;
    }

    .products-hero p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-item {
        display: flex;
        flex-direction: column;
    }

    .custom-order-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .products-hero h1 {
        font-size: 2rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }
}
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-right {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.8rem 0;
    }

    .nav-menu a {
        padding: 0.8rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .btn-get-quote {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-container {
        padding: 2rem 20px;
    }

    .hero-right {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-call,
    .btn-cta-whatsapp {
        min-width: 100%;
    }

    .stats-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .inventory-section h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .btn-cta-contact {
        padding: 0.55rem 1.2rem;
        font-size: 0.8rem;
    }

    .btn-cta-explore {
        padding: 0.55rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .inventory-grid {
        grid-template-columns: 1fr;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        padding: 0.55rem 1.2rem;
        font-size: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-left {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .about-features {
        gap: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .btn-cta-contact {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .btn-cta-explore {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-content-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-label {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.header-underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text-wrapper {
    animation: slideInLeft 0.7s ease;
}

.about-text {
    padding-right: 1rem;
}

.text-card {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 64, 175, 0.05);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    transition: var(--transition-smooth);
    animation: slideUp 0.6s ease;
}

.text-card:hover {
    background: rgba(30, 64, 175, 0.1);
    border-left-color: var(--accent-orange);
    transform: translateX(8px);
}

.text-card i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.text-card:hover i {
    color: var(--accent-orange);
}

.text-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    animation: slideInRight 0.7s ease;
}

.featured-image {
    grid-column: 1;
    grid-row: 1;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid rgba(30, 64, 175, 0.1);
}

.featured-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(30, 64, 175, 0.25);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-iso {
    grid-column: 2;
    grid-row: 1;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 12px;
    padding: 1.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
    aspect-ratio: 1;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.badge-iso::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.badge-iso:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(30, 64, 175, 0.35);
}

.badge-years {
    grid-column: 1;
    grid-row: 2;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c51 100%);
    border-radius: 12px;
    padding: 1.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
    aspect-ratio: 1;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.badge-years::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.badge-years:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.35);
}

.badge-text-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.badge-text-sub {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin: 0.3rem 0 0 0;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
}

.about-image-bottom-right {
    grid-column: 2;
    grid-row: 2;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid rgba(30, 64, 175, 0.1);
}

.about-image-bottom-right:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(30, 64, 175, 0.25);
}

.about-image-bottom-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Guided by Experience Section */
.guided-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.guided-section.premium-section {
    background: linear-gradient(180deg, rgba(30, 64, 175, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
}

.section-bg-accent {
    position: absolute;
    top: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.leader-card-enhanced {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    animation: slideUp 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.leader-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
}

.leader-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.leader-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-blue);
}

.leader-avatar-enhanced {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-blue);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
    position: relative;
}

.avatar-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--accent-orange);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
    text-transform: capitalize;
}

.leader-card-enhanced:hover .leader-avatar-enhanced {
    border-color: var(--accent-orange);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.4);
}

.leader-avatar-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-avatar-enhanced i {
    color: #bbb;
    font-size: 7rem;
}

.leader-info-enhanced h3 {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.leader-info-enhanced .position {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.leader-info-enhanced .quote {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 10px;
    background: var(--white);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-blue);
    animation: fadeInUp 0.6s ease backwards;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-top-color: var(--accent-orange);
}

.value-card-enhanced {
    text-align: center;
    padding: 2.5rem;
    border-radius: 16px;
    background: white;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.1);
    animation: slideUp 0.6s ease backwards;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
}

.value-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.value-card-header {
    margin-bottom: 1.5rem;
}

.value-icon-new {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15), rgba(59, 130, 246, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-smooth);
}

.value-card-enhanced:hover .value-icon-new {
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
    color: white;
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.value-card-enhanced h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0;
}

.value-card-enhanced p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 1rem 0 1.5rem 0;
    flex-grow: 1;
}

.value-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

.value-link:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
    transform: translateX(4px);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(59, 130, 246, 0.2));
    transform: scale(1.15) rotate(-10deg);
    color: var(--accent-orange);
}
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Page Hero for About */
.page-hero {
    background: var(--gradient-dark);
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.page-hero.about-hero {
    background: linear-gradient(135deg, #0f1f41 0%, #1a2f5a 50%, #1e40af 100%);
    background-size: 400% 400%;
    animation: bgShift 15s ease infinite;
    min-height: 600px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: slideInLeft 20s linear infinite;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    animation: slideUp 0.8s ease;
}

.hero-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 107, 53, 0.15);
    color: #ffb366;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.hero-badge-large i {
    font-size: 1.1rem;
}

.hero-title-large {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffb366;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 2rem;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-card {
        flex-direction: column;
        text-align: center;
    }

    .text-card i {
        margin: 0 auto 0.5rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .about-image-top-left,
    .about-image-bottom-right {
        aspect-ratio: 3/2;
    }

    .badge-iso,
    .badge-years {
        aspect-ratio: auto;
        min-height: 120px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Contact Page Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        grid-template-columns: 1fr;
        min-height: 300px;
    }

    .map-placeholder {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .map-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .map-embed {
        min-height: 300px;
    }

    .location-details {
        border-left: none;
        border-top: 1px solid #e5e7eb;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .who-we-are-grid {
        gap: 1.5rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-image-top-left,
    .about-image-bottom-right {
        grid-column: 1 !important;
        aspect-ratio: 16/9;
    }

    .badge-iso {
        grid-column: 1 !important;
        grid-row: auto;
        min-height: 100px;
        aspect-ratio: auto;
    }

    .badge-years {
        grid-column: 1 !important;
        grid-row: auto;
        min-height: 100px;
        aspect-ratio: auto;
    }

    /* Contact Page Mobile */
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .contact-features {
        margin-top: 2rem;
    }

    .map-container {
        grid-template-columns: 1fr;
        min-height: 300px;
    }

    .map-embed {
        min-height: 300px;
    }

    .location-details {
        border-left: none;
        border-top: 2px solid #e5e7eb;
        padding: 2rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary {
        width: 100%;
        margin-left: 0;
    }

        grid-row: auto;
        min-height: 100px;
        aspect-ratio: auto;
    }

    .page-hero {
        padding: 3rem 0;
        min-height: 400px;
    }

    .page-hero.about-hero {
        min-height: 450px;
    }

    .hero-title-large {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1.05rem;
    }

    .leader-avatar-enhanced {
        width: 160px;
        height: 160px;
    }

    .leader-card-enhanced {
        padding: 1.5rem;
    }

    .leadership-grid {
        gap: 1.5rem;
    }

    .guided-section {
        padding: 3rem 0;
    }

    .values-section {
        padding: 3rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card-enhanced {
        padding: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-icon,
    .value-icon-new {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text-wrapper {
        animation: none;
    }

    .text-card {
        margin-bottom: 1rem;
        padding: 1.2rem;
    }

    .tagline-banner {
        padding: 0.6rem 0.8rem;
    }

    .tagline-content {
        gap: 0.6rem;
    }

    .tagline-text {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }

    .tagline-icon {
        font-size: 0.9rem;
    }
}



/* ==================== ABOUT PAGE GRID FIXES ==================== */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    min-height: 500px;
}

.about-image-top-left,
.about-image-top-right,
.about-image-bottom-left,
.about-image-bottom-right {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-height: 240px;
}

.featured-image img,
.about-image-bottom-right img,
.about-image-top-right img,
.about-image-bottom-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.featured-image:hover img,
.about-image-bottom-right:hover img {
    transform: scale(1.05);
}

.about-image-top-left { grid-column: 1; grid-row: 1; }
.about-image-top-right { grid-column: 2; grid-row: 1; }
.about-image-bottom-left { grid-column: 1; grid-row: 2; }
.about-image-bottom-right { grid-column: 2; grid-row: 2; }

