* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f6ff;
    color: #dde1f0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header Styles */
header {
    background: #fff;
    padding: 3px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 100, 180, 0.12);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 255px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-section h1 {
    font-size: 28px;
    color: #0070c0;
    margin: 0;
}

.tagline {
    font-size: 12px;
    color: #6688aa;
    margin: 0;
}

nav {
    display: flex;
    gap: 30px;
}

/* Hamburger Menu Button (Hidden on Desktop) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #0070c0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

nav a {
    color: #1a2340;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0061a7;
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
    left: 0;
}

nav a:hover, 
nav a.active {
    color: #0070c0;
    background: rgba(0, 112, 192, 0.08);
}

/* Wallpaper Section with Geometric Background */
.wallpaper-section {
    position: relative;
    height: 100vh;
    margin-top: 90px;
    overflow: hidden;
    background: linear-gradient(135deg, #090c0f 0%, #0c1016 50%, #07090b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Canvas for geometric network */
#geometricCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Floating Small Icons (Background) */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 85px;
    height: 85px;
    opacity: 0.4;
    animation: floatMove 8s ease-in-out infinite;
    transition: all 0.3s;
}

.float-icon:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.float-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(15, 20, 23, 0.3));
}

/* Different animation delays for each icon */
.float-icon:nth-child(1) { animation-delay: 0s; animation-duration: 7s; }
.float-icon:nth-child(2) { animation-delay: 1s; animation-duration: 8s; }
.float-icon:nth-child(3) { animation-delay: 2s; animation-duration: 9s; }
.float-icon:nth-child(4) { animation-delay: 1.5s; animation-duration: 7.5s; }
.float-icon:nth-child(5) { animation-delay: 0.5s; animation-duration: 8.5s; }
.float-icon:nth-child(6) { animation-delay: 2.5s; animation-duration: 7s; }
.float-icon:nth-child(7) { animation-delay: 1.2s; animation-duration: 8.2s; }
.float-icon:nth-child(8) { animation-delay: 1.8s; animation-duration: 7.8s; }

@keyframes floatMove {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25%       { transform: translateY(-20px) rotate(5deg); }
    50%       { transform: translateY(-10px) rotate(-5deg); }
    75%       { transform: translateY(-25px) rotate(3deg); }
}

/* ========================
   NEW HERO CENTER CONTENT
   ======================== */
.hero-center {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 860px;
    padding: 0 40px;
    animation: heroFadeUp 1s ease-out both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 13px;
    color: #00d4ff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 28px;
    animation: heroFadeUp 1s ease-out 0.1s both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 8px #00d4ff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 8px #00d4ff; }
    50%       { box-shadow: 0 0 18px #00d4ff, 0 0 30px rgba(0, 212, 255, 0.4); }
}

.hero-title {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
    padding-bottom: 8px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #dde3e7 30%, #b0bec5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 12px rgba(200, 215, 225, 0.12));
    animation: heroFadeUp 1s ease-out 0.2s both;
}

.hero-title-accent {
    background: linear-gradient(135deg, #f0f6ff, #0090dd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 22px;
    color: #a8b8cc;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    animation: heroFadeUp 1s ease-out 0.3s both;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 660px;
    margin: 0 auto 36px;
    animation: heroFadeUp 1s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 52px;
    animation: heroFadeUp 1s ease-out 0.5s both;
}

.hero-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0070c0, #00aadd);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(0, 112, 192, 0.4);
    letter-spacing: 0.3px;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 112, 192, 0.6);
}

.hero-btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    color: #c8d8e8;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.4);
    color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: heroFadeUp 1s ease-out 0.6s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.hero-stat-num {
    font-size: 30px;
    font-weight: 700;
    color: #00d4ff;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-arrow {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #00d4ff;
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0%   { top: 8px; opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

/* Content Section Below Wallpaper */
.content-section {
    background: linear-gradient(180deg, #e8f2ff 0%, #f0f6ff 100%);
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

.content-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #0070c0;
}

.content-section .subtitle {
    text-align: center;
    font-size: 18px;
    color: #4a6080;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.card {
    background: ffff(90.03% 0.72 18.61 / 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 112, 192, 0.18);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 80, 160, 0.07);
}

.card:hover {
    transform: translateY(-10px);
    border-color: #fff;
    box-shadow: 0 10px 40px rgba(14, 14, 22, 0.36);
}

.card:hover h3 { color: #00d4ff; }
.card:hover p  { color: #d0d8e0; }

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(0, 112, 192, 0.2);
}

.card h3 {
    font-size: 22px;
    color: #0070c0;
    margin-bottom: 15px;
}

.card p {
    color: #3a5070;
    line-height: 1.6;
    font-size: 15px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0070c0, #0090dd);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 112, 192, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 112, 192, 0.5);
}

/* Industries Section */
.industries-section {
    background: linear-gradient(180deg, #f0f6ff 0%, #e0efff 100%);
    padding: 80px 0;
    position: relative;
}

.industries-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #0070c0;
}

.industries-section .subtitle {
    text-align: center;
    font-size: 18px;
    color: #4a6080;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.industry-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(0, 112, 192, 0.18);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 80, 160, 0.07);
}

.industry-box:hover {
    transform: translateY(-10px);
    border-color: #0070c0;
    box-shadow: 0 10px 40px rgba(0, 112, 192, 0.2);
    background: rgba(30, 45, 60, 0.95);
}

.industry-box:hover h4 { color: #00d4ff; }
.industry-box:hover p  { color: #d0d8e0; }

.industry-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.industry-icon img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(0, 112, 192, 0.2);
}

.industry-box h4 {
    font-size: 20px;
    color: #0070c0;
    margin-bottom: 15px;
    font-weight: 600;
}

.industry-box p {
    color: #3a5070;
    line-height: 1.7;
    font-size: 15px;
}

/* Footer */
footer {
    background: #d0e4f7;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 112, 192, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #0070c0;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p, 
.footer-section ul {
    color: #3a5070;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #3a5070;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #0070c0;
}

.social-link {
    color: #0070c0;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #005099;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 80, 160, 0.15);
    color: #6688aa;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 60px; }
}

@media (max-width: 1024px) {
    .float-icon:nth-child(7),
    .float-icon:nth-child(8) { display: none; }

    .hero-title { font-size: 52px; }
}

@media (max-width: 768px) {
    /* Show Hamburger Menu on Mobile */
    .hamburger-menu { display: flex; }

    /* Mobile Navigation */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(240, 246, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 120px 30px 40px;
        box-shadow: -5px 0 20px rgba(0, 80, 160, 0.15);
        transition: right 0.4s ease;
        z-index: 1000;
        border-left: 2px solid rgba(0, 112, 192, 0.3);
    }

    nav.active { right: 0; }

    nav a {
        padding: 18px 20px;
        font-size: 18px;
        border-radius: 10px;
        border-left: 3px solid transparent;
        transition: all 0.3s;
    }

    nav a:hover,
    nav a.active {
        background: rgba(0, 112, 192, 0.1);
        border-left-color: #0070c0;
        transform: translateX(5px);
    }

    body.menu-open { overflow: hidden; }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0, 40, 100, 0.3);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    .wallpaper-section { height: 100vh; }

    .hero-center { padding: 0 24px; }
    .hero-title  { font-size: 26px; white-space: nowrap; }
    .hero-subtitle { font-size: 16px; }
    .hero-desc { font-size: 14px; }

    .hero-actions { flex-direction: column; align-items: center; gap: 14px; }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 24px 28px;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

    .float-icon {
        width: 45px;
        height: 45px;
    }

    .float-icon:nth-child(5),
    .float-icon:nth-child(6) { display: none; }

    .content-section h2,
    .industries-section h2 { font-size: 32px; }

    .grid-3 { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo-img {
        width: 195px;
        height: 82px;
        border-radius: 50%;
        object-fit: cover;
    }

    .hero-title    { font-size: 30px; }
    .hero-subtitle { font-size: 16px; }
    .hero-badge    { font-size: 11px; padding: 6px 16px; }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 28px;
        font-size: 15px;
    }

    .hero-stat-num   { font-size: 24px; }
    .hero-stat-label { font-size: 11px; }

    .float-icon { width: 35px; height: 35px; }

    .content-section h2,
    .industries-section h2 { font-size: 26px; }

    .content-section .subtitle,
    .industries-section .subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
}

/* Mobile Landscape */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-title  { font-size: 32px; }
    .hero-desc   { display: none; }
    .hero-stats  { display: none; }
    .hero-actions { margin-bottom: 0; }

    .scroll-indicator { display: none; }
    .float-icon { width: 30px; height: 30px; }
}

@media (max-width: 360px) {
    .hero-title    { font-size: 26px; }
    .hero-subtitle { font-size: 13px; }

    .card         { padding: 20px; }
    .industry-box { padding: 25px; }
}

/* ========================
   ABOUT PAGE STYLES
   ======================== */

.about-hero {
    position: relative;
    background: linear-gradient(135deg, #ddeeff 0%, #e8f2ff 50%, #d0e8ff 100%);
    padding: 180px 0 100px;
    margin-top: 90px;
    overflow: hidden;
}

.about-hero #geometricCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.about-hero .floating-icons {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.about-hero-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
    filter: blur(1px);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/semiconductor-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(135deg, rgba(2, 8, 14, 0.85) 0%, rgba(7, 14, 22, 0.8) 50%, rgba(7, 14, 20, 0.85) 100%),
        radial-gradient(circle at 20% 30%, rgba(0, 112, 192, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 100, 180, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-hero .container { position: relative; z-index: 10; }

.about-hero h1 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #d6dce3, #d7dfe3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero .lead {
    font-size: 20px;
    text-align: center;
    color: #d5dae4;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-overview {
    background: linear-gradient(180deg, #e8f2ff 0%, #f0f6ff 100%);
    padding: 80px 0;
    position: relative;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 42px;
    color: #0070c0;
    margin-bottom: 25px;
}

.overview-text p {
    font-size: 17px;
    color: #3a5070;
    line-height: 1.9;
    margin-bottom: 20px;
}

.overview-highlight {
    background: rgba(0, 112, 192, 0.07);
    border-left: 4px solid #0070c0;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.overview-highlight p {
    margin: 0;
    font-size: 16px;
    color: #2a3a5a;
    font-style: italic;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 112, 192, 0.18);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 80, 160, 0.07);
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: #0070c0;
    box-shadow: 0 10px 40px rgba(0, 112, 192, 0.2);
    background: rgba(30, 45, 60, 0.95);
}

.stat-box:hover h3 { color: #00d4ff; }
.stat-box:hover p  { color: #d0d8e0; }

.stat-icon { font-size: 48px; margin-bottom: 15px; }

.stat-box h3 {
    font-size: 18px;
    color: #0070c0;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-box p {
    font-size: 14px;
    color: #4a6080;
    margin: 0;
}

.mission-vision {
    background: linear-gradient(180deg, #f0f6ff 0%, #e0efff 100%);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 45px;
    border: 2px solid rgba(0, 112, 192, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(0, 80, 160, 0.07);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, #0070c0, #0090dd);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: #0070c0;
    box-shadow: 0 20px 50px rgba(0, 112, 192, 0.2);
    background: rgba(30, 45, 60, 0.95);
}

.mv-card:hover h3 { color: #00d4ff; }
.mv-card:hover p  { color: #d0d8e0; }

.mv-icon { font-size: 56px; margin-bottom: 25px; display: inline-block; }

.mv-card h3 {
    font-size: 32px;
    color: #0070c0;
    margin-bottom: 20px;
    font-weight: 700;
}

.mv-card p {
    font-size: 17px;
    color: #2a3a5a;
    line-height: 1.8;
    margin: 0;
}

.core-values {
    background: linear-gradient(180deg, #e0efff 0%, #f0f6ff 100%);
    padding: 80px 0;
}

.core-values h2 {
    text-align: center;
    font-size: 42px;
    color: #0070c0;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px 30px;
    border: 1px solid rgba(0, 112, 192, 0.18);
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 80, 160, 0.05);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: linear-gradient(180deg, #0070c0, #0090dd);
    border-radius: 15px 0 0 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.value-item:hover::before { opacity: 1; }

.value-item:hover {
    transform: translateX(8px);
    border-color: #0070c0;
    box-shadow: 0 10px 40px rgba(0, 112, 192, 0.18);
    background: rgba(30, 45, 60, 0.95);
}

.value-item:hover h4 { color: #00d4ff; }
.value-item:hover p  { color: #d0d8e0; }

.value-item h4 {
    font-size: 20px;
    color: #0070c0;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-icon { font-size: 28px; }

.value-item p {
    font-size: 15px;
    color: #3a5070;
    line-height: 1.7;
    margin: 0;
}

.milestones {
    background: linear-gradient(180deg, #f0f6ff 0%, #e8f2ff 100%);
    padding: 80px 0;
    position: relative;
}

.milestones h2 {
    text-align: center;
    font-size: 42px;
    color: #0070c0;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #0070c0, #0090dd);
    border-radius: 2px;
}

.milestone-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.milestone-item:nth-child(odd)  { flex-direction: row; }
.milestone-item:nth-child(even) { flex-direction: row-reverse; }

.milestone-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 112, 192, 0.18);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 80, 160, 0.07);
}

.milestone-item:nth-child(odd) .milestone-content {
    margin-right: calc(50% + 30px);
    text-align: right;
}

.milestone-item:nth-child(even) .milestone-content {
    margin-left: calc(50% + 30px);
    text-align: left;
}

.milestone-content:hover {
    transform: scale(1.05);
    border-color: #0070c0;
    box-shadow: 0 10px 40px rgba(0, 112, 192, 0.2);
    background: rgba(30, 45, 60, 0.95);
}

.milestone-content:hover h4 { color: #00d4ff; }
.milestone-content:hover p  { color: #d0d8e0; }

.milestone-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 20px;
    background: #0070c0;
    border-radius: 50%;
    border: 4px solid #f0f6ff;
    box-shadow: 0 0 20px rgba(0, 112, 192, 0.4);
    z-index: 2;
}

.milestone-content h4 {
    font-size: 20px;
    color: #0070c0;
    margin-bottom: 12px;
    font-weight: 600;
}

.milestone-content p {
    font-size: 15px;
    color: #3a5070;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .overview-content { gap: 40px; }
    .mv-grid { gap: 35px; }
}

@media (max-width: 768px) {
    .about-hero { padding: 150px 0 80px; }
    .about-hero h1 { font-size: 38px; }
    .about-hero .lead { font-size: 17px; }
    .overview-content { grid-template-columns: 1fr; gap: 50px; }
    .overview-text h2 { font-size: 34px; }
    .overview-stats { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; gap: 30px; }
    .mv-card { padding: 35px; }
    .mv-card h3 { font-size: 28px; }
    .values-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .milestone-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    .milestone-item:nth-child(odd) .milestone-content,
    .milestone-item:nth-child(even) .milestone-content {
        margin: 0; text-align: left; width: 100%;
    }
    .milestone-dot { left: 20px; }
}

@media (max-width: 480px) {
    .about-hero { padding: 130px 0 60px; }
    .about-hero h1 { font-size: 28px; }
    .about-hero .lead { font-size: 15px; }
    .overview-text h2 { font-size: 28px; }
    .overview-text p { font-size: 15px; }
    .stat-box { padding: 25px; }
    .mv-card { padding: 30px 25px; }
    .mv-icon { font-size: 44px; }
    .mv-card h3 { font-size: 24px; }
    .mv-card p { font-size: 15px; }
    .core-values h2, .milestones h2 { font-size: 32px; }
    .value-item { padding: 25px 20px; }
    .milestone-content { padding: 25px; }
}

/* ========================
   PRODUCTS PAGE STYLES
   ======================== */

.products-hero {
    position: relative;
    background: linear-gradient(135deg, #070b0f 0%, #080c10 50%, #080b0e 100%);
    padding: 180px 0 120px;
    margin-top: 90px;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(188, 197, 203, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(210, 215, 218, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.products-hero #geometricCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.products-hero .floating-icons {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.products-hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.products-hero h1 {
    font-size: 58px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #d6dade, #d4dade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-hero .lead {
    font-size: 24px;
    color: #ccd0db;
    margin-bottom: 10px;
    font-weight: 600;
}

.products-hero .sub-lead {
    font-size: 17px;
    color: #e7e9ee;
    max-width: 700px;
    margin: 0 auto;
}

.product-categories {
    background: linear-gradient(180deg, #e8f2ff 0%, #f0f6ff 100%);
    padding: 80px 0;
}

.product-categories h2 {
    text-align: center;
    font-size: 42px;
    color: #0070c0;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.product-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px;
    border: 2px solid rgba(0, 112, 192, 0.18);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 80, 160, 0.07);
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, #0070c0, #0090dd);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.product-card:hover::before { opacity: 0.15; }

.product-card:hover {
    transform: translateY(-12px);
    border-color: #0070c0;
    box-shadow: 0 20px 50px rgba(0, 112, 192, 0.25);
    background: rgba(30, 45, 60, 0.95);
}

.product-card:hover h3 { color: #00d4ff; }
.product-card:hover p  { color: #d0d8e0; }

.product-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.product-card-icon img {
    width: 150px; height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 112, 192, 0.2));
    transition: transform 0.4s;
}

.product-card:hover .product-card-icon img {
    transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
    font-size: 22px;
    color: #0070c0;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-card p {
    font-size: 15px;
    color: #3a5070;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 112, 192, 0.12), rgba(0, 100, 180, 0.1));
    border: 1px solid rgba(0, 112, 192, 0.35);
    color: #0070c0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-industries {
    background: linear-gradient(180deg, #f0f6ff 0%, #e0efff 100%);
    padding: 80px 0;
}

.products-industries h2 {
    text-align: center;
    font-size: 42px;
    color: #0070c0;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #4a6080;
    margin-bottom: 60px;
}

.industries-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.industry-showcase-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 112, 192, 0.15);
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 80, 160, 0.06);
}

.industry-showcase-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #0070c0, #0090dd);
    border-radius: 0 0 20px 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.industry-showcase-card:hover::after { opacity: 1; }

.industry-showcase-card:hover {
    transform: translateY(-10px);
    border-color: #0070c0;
    box-shadow: 0 15px 45px rgba(0, 112, 192, 0.2);
    background: rgba(30, 45, 60, 0.95);
}

.industry-showcase-card:hover h3 { color: #00d4ff; }
.industry-showcase-card:hover p  { color: #d0d8e0; }

.industry-showcase-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.industry-showcase-icon img {
    width: 150px; height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 112, 192, 0.25));
}

.industry-showcase-card h3 {
    font-size: 24px;
    color: #0070c0;
    margin-bottom: 18px;
    font-weight: 600;
}

.industry-showcase-card p {
    font-size: 16px;
    color: #3a5070;
    line-height: 1.8;
}

.why-semvix {
    background: linear-gradient(180deg, #e0efff 0%, #f0f6ff 100%);
    padding: 80px 0;
    position: relative;
}

.why-semvix h2 {
    text-align: center;
    font-size: 42px;
    color: #0070c0;
    margin-bottom: 15px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.why-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 40px 35px;
    border: 1px solid rgba(0, 112, 192, 0.18);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 80, 160, 0.07);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 0%;
    background: linear-gradient(180deg, #0070c0, #0090dd);
    transition: height 0.4s;
}

.why-card:hover::before { height: 100%; }

.why-card:hover {
    transform: translateX(8px);
    border-color: #0070c0;
    box-shadow: 0 15px 45px rgba(0, 112, 192, 0.2);
    background: rgba(30, 45, 60, 0.95);
}

.why-card:hover h3 { color: #00d4ff; }
.why-card:hover p  { color: #d0d8e0; }

.why-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #0070c0, #0090dd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1;
}

.why-card h3 {
    font-size: 22px;
    color: #0070c0;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-card p {
    font-size: 15px;
    color: #3a5070;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .industries-showcase { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

@media (max-width: 768px) {
    .products-hero { padding: 150px 0 100px; }
    .products-hero h1 { font-size: 40px; }
    .products-hero .lead { font-size: 20px; }
    .products-hero .sub-lead { font-size: 15px; }
    .product-categories h2, .products-industries h2, .why-semvix h2 { font-size: 34px; }
    .products-grid, .industries-showcase, .why-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-card, .industry-showcase-card, .why-card { padding: 30px; }
}

@media (max-width: 480px) {
    .products-hero { padding: 130px 0 80px; }
    .products-hero h1 { font-size: 32px; }
    .products-hero .lead { font-size: 18px; }
    .products-hero .sub-lead { font-size: 14px; }
    .product-categories h2, .products-industries h2, .why-semvix h2 { font-size: 28px; }
    .section-subtitle { font-size: 16px; padding: 0 20px; }
    .product-card, .industry-showcase-card, .why-card { padding: 25px; }
    .product-card h3, .industry-showcase-card h3, .why-card h3 { font-size: 20px; }
    .why-number { font-size: 40px; }
}

/* ========================
   CONTACT PAGE STYLES
   ======================== */

.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #080c11 0%, #0c1016 50%, #0e151c 100%);
    padding: 180px 0 120px;
    margin-top: 90px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(191, 197, 201, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(0, 100, 180, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero #geometricCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.contact-hero .floating-icons {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.contact-hero .container { position: relative; z-index: 10; text-align: center; }

.contact-hero h1 {
    font-size: 58px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #d7dce1, #b3b9bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero .lead {
    font-size: 24px;
    color: #d0d2da;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-hero .sub-lead {
    font-size: 17px;
    color: #c7ccd3;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    background: linear-gradient(180deg, #e8f2ff 0%, #f0f6ff 100%);
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container h2 {
    font-size: 36px;
    color: #0070c0;
    margin-bottom: 15px;
}

.form-description {
    font-size: 16px;
    color: #4a6080;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 112, 192, 0.18);
    box-shadow: 0 4px 20px rgba(0, 80, 160, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group { margin-bottom: 25px; }

.form-group label {
    display: block;
    color: #0070c0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(240, 246, 255, 0.9);
    border: 1px solid rgba(0, 112, 192, 0.25);
    border-radius: 10px;
    padding: 14px 18px;
    color: #1a2340;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0070c0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 20px rgba(0, 112, 192, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #88aacc; }

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230070c0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group select option { background: #f0f6ff; color: #1a2340; }
.form-group textarea { resize: vertical; min-height: 120px; }

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0070c0, #0090dd);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 5px 25px rgba(0, 112, 192, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 112, 192, 0.5);
}

.submit-btn svg { transition: transform 0.3s; }
.submit-btn:hover svg { transform: translateX(5px); }

.success-message {
    background: rgba(0, 112, 192, 0.08);
    border: 2px solid #0070c0;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

.success-message svg { animation: checkmark 0.6s ease-in-out; }
.success-message p { color: #0070c0; font-size: 18px; font-weight: 600; margin: 0; }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes checkmark {
    0%   { transform: scale(0); }
    50%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.contact-info-container h2 {
    font-size: 36px;
    color: #0070c0;
    margin-bottom: 15px;
}

.info-description {
    font-size: 16px;
    color: #4a6080;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 25px; margin-bottom: 40px; }

.info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(0, 112, 192, 0.18);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 80, 160, 0.06);
}

.info-card:hover {
    border-color: #0070c0;
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 112, 192, 0.18);
    background: rgba(30, 45, 60, 0.95);
}

.info-card:hover h3 { color: #00d4ff; }
.info-card:hover p, .info-card:hover a { color: #d0d8e0; }

.info-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(0, 112, 192, 0.12), rgba(0, 100, 180, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 112, 192, 0.25);
}

.info-icon svg { stroke: #0070c0; }

.info-card h3 { font-size: 20px; color: #0070c0; margin-bottom: 12px; font-weight: 600; }
.info-card p  { font-size: 15px; color: #3a5070; margin-bottom: 5px; line-height: 1.6; }
.info-card p:last-child { margin-bottom: 0; }
.info-card a  { color: #3a5070; text-decoration: none; transition: color 0.3s; }
.info-card a:hover { color: #0070c0; }

.social-links { display: flex; flex-direction: column; gap: 8px; }

.social-icon-link {
    color: #3a5070;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.social-icon-link:hover { color: #0070c0; transform: translateX(5px); }

.business-hours {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 112, 192, 0.18);
    box-shadow: 0 4px 12px rgba(0, 80, 160, 0.06);
}

.business-hours h3 { font-size: 22px; color: #0070c0; margin-bottom: 20px; font-weight: 600; }
.hours-list { display: flex; flex-direction: column; gap: 15px; }

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 112, 192, 0.1);
}

.hours-item:last-child { border-bottom: none; padding-bottom: 0; }
.hours-item span:first-child { color: #4a6080; font-size: 15px; }
.hours-item span:last-child  { color: #0070c0; font-size: 15px; font-weight: 600; }

.map-section {
    background: linear-gradient(180deg, #f0f6ff 0%, #e0efff 100%);
    padding: 80px 0;
}

.map-section h2 { text-align: center; font-size: 42px; color: #0070c0; margin-bottom: 15px; }

.map-subtitle { text-align: center; font-size: 18px; color: #4a6080; margin-bottom: 50px; }

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 112, 192, 0.25);
    box-shadow: 0 10px 40px rgba(0, 112, 192, 0.12);
    margin-bottom: 40px;
    transition: all 0.3s;
}

.map-container:hover {
    border-color: #0070c0;
    box-shadow: 0 15px 50px rgba(0, 112, 192, 0.22);
}

.map-address-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(0, 112, 192, 0.18);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 80, 160, 0.08);
}

.map-address-card:hover {
    transform: translateY(-5px);
    border-color: #0070c0;
    box-shadow: 0 15px 45px rgba(0, 112, 192, 0.2);
}

.map-address-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(0, 112, 192, 0.12), rgba(0, 100, 180, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 112, 192, 0.3);
}

.map-address-icon svg { stroke: #0070c0; }
.map-address-content { flex: 1; }
.map-address-content h3 { font-size: 24px; color: #0070c0; margin-bottom: 15px; font-weight: 600; }
.map-address-content p  { font-size: 16px; color: #3a5070; line-height: 1.8; margin-bottom: 8px; }
.map-address-content p:last-of-type { margin-bottom: 20px; }

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0070c0, #0090dd);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 112, 192, 0.25);
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 112, 192, 0.4);
}

.map-link svg { transition: transform 0.3s; }
.map-link:hover svg { transform: translateX(3px) translateY(-3px); }

@media (max-width: 1024px) { .contact-layout { grid-template-columns: 1fr; gap: 50px; } }

@media (max-width: 768px) {
    .contact-hero { padding: 150px 0 100px; }
    .contact-hero h1 { font-size: 40px; }
    .contact-hero .lead { font-size: 20px; }
    .contact-hero .sub-lead { font-size: 15px; }
    .contact-form-container h2, .contact-info-container h2 { font-size: 32px; }
    .contact-form { padding: 30px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .map-section h2 { font-size: 34px; }
    .map-subtitle { font-size: 16px; padding: 0 20px; }
    .map-address-card { flex-direction: column; padding: 30px; text-align: center; }
    .map-address-icon { margin: 0 auto; }
    .map-address-content { text-align: center; }
}

@media (max-width: 480px) {
    .contact-hero { padding: 130px 0 80px; }
    .contact-hero h1 { font-size: 32px; }
    .contact-hero .lead { font-size: 18px; }
    .contact-hero .sub-lead { font-size: 14px; }
    .contact-form-container h2, .contact-info-container h2 { font-size: 28px; }
    .contact-form { padding: 25px; }
    .form-group input, .form-group select, .form-group textarea { padding: 12px 16px; font-size: 14px; }
    .submit-btn { padding: 14px 30px; font-size: 15px; }
    .info-card, .business-hours { padding: 20px; }
    .map-section h2 { font-size: 28px; }
    .map-subtitle { font-size: 14px; }
    .map-address-card { padding: 25px 20px; }
    .map-address-icon { width: 50px; height: 50px; }
    .map-address-content h3 { font-size: 20px; }
    .map-address-content p  { font-size: 14px; }
    .map-link { padding: 10px 20px; font-size: 14px; }
}