/* ============================================
   CSS Variables - Brand Color Palette
   ============================================ */
:root {
    --brand-primary: #186BDD;        /* Calm Blue */
    --brand-teal: #2EC4B6;           /* GPS Signal Accent */
    --brand-success: #4CAF50;        /* Success / Safe */
    --brand-alert: #E53935;          /* Alerts / Panic */
    --text-charcoal: #1F2937;        /* Text / Dark UI */
    --bg-cloud: #F9FAFB;              /* Background */
    --white: #FFFFFF;
    --primary-dark: #0d4fa8;
    --primary-light: rgba(24, 107, 221, 0.1);
    --teal-light: rgba(46, 196, 182, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-charcoal);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Typography - Enhanced
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-charcoal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ============================================
   Header / Navbar
   ============================================ */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary);
    transition: var(--transition-fast);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    white-space: nowrap;
}

.logo a:hover {
    color: var(--brand-teal);
    transform: translateX(2px);
}

.logo a:hover .logo-img {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-charcoal);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-primary);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-charcoal);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ============================================
   Hero Section - Enhanced with GPS Visuals
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--primary-dark) 50%, #0a3d7a 100%);
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: transparent;
}

.gps-signal {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: gpsPulse 3s ease-in-out infinite;
}

.gps-signal-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.gps-signal-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.gps-signal-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes gpsPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.1;
    }
}

.route-line {
    position: absolute;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46, 196, 182, 0.3), transparent);
    animation: routeMove 8s linear infinite;
}

.route-line-1 {
    top: 30%;
    left: -300px;
    transform: rotate(25deg);
}

.route-line-2 {
    bottom: 25%;
    right: -300px;
    transform: rotate(-15deg);
    animation-delay: 4s;
}

@keyframes routeMove {
    0% {
        transform: translateX(0) rotate(25deg);
    }
    100% {
        transform: translateX(calc(100vw + 300px)) rotate(25deg);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ============================================
   Buttons - Enhanced
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--brand-primary);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background-color: var(--bg-cloud);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--brand-primary);
    transform: translateY(-3px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-dark);
}

.btn-light:hover {
    background-color: var(--bg-cloud);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ============================================
   Section Styles - Enhanced
   ============================================ */
section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-charcoal);
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* ============================================
   Domains Section - Light Blue Tint
   ============================================ */
.domains {
    background: linear-gradient(180deg, var(--bg-cloud) 0%, rgba(24, 107, 221, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.domains-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gps-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--brand-teal);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(46, 196, 182, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

.gps-dot-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.gps-dot-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.gps-dot-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 0.5s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.domain-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 196, 182, 0.1), transparent);
    transition: left 0.5s;
}

.domain-card:hover::before {
    left: 100%;
}

.domain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--brand-teal);
}

.domain-icon {
    width: 56px;
    height: 56px;
    color: var(--brand-teal);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.domain-card:hover .domain-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--brand-primary);
}

.domain-icon svg {
    width: 100%;
    height: 100%;
}

.domain-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-charcoal);
    font-weight: 700;
}

.domain-description {
    color: #6B7280;
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   Product Section - Dark Premium Look
   ============================================ */
.product {
    background: linear-gradient(180deg, #0a1a2e 0%, #0d2b4a 50%, #0a1a2e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.product-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.route-path {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: routePathMove 20s linear infinite;
}

@keyframes routePathMove {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(100px);
    }
}

.gps-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(46, 196, 182, 0.3);
    border-radius: 50%;
    animation: gpsPulseLarge 4s ease-in-out infinite;
}

.gps-pulse-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.gps-pulse-2 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes gpsPulseLarge {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-text {
    color: var(--white);
}

.product .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.product .section-title {
    color: var(--white);
    font-size: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.product-card-block {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card-block:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 196, 182, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.product-card-visual {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 4px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.product-card-body {
    padding: 1.75rem 2rem;
    flex: 1;
}

.product-card-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-card-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
}

.features-section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.features-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.features-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list .feature-icon {
    margin-top: 0;
}

.feature-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.product-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background-color: rgba(46, 196, 182, 0.2);
    color: var(--brand-teal);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(46, 196, 182, 0.3);
}

.product-intro {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.75rem;
    font-size: 1.125rem;
}

.product-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
}

.feature-icon {
    color: var(--brand-success);
    font-weight: bold;
    font-size: 1.375rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-card {
    background-color: rgba(10, 26, 46, 0.85);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.card-header {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dots {
    display: flex;
    gap: 0.625rem;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.card-dots span:nth-child(1) {
    background-color: var(--brand-alert);
}

.card-dots span:nth-child(2) {
    background-color: #FBBF24;
}

.card-dots span:nth-child(3) {
    background-color: var(--brand-success);
}

.card-content {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.1) 0%, rgba(24, 107, 221, 0.1) 100%);
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracking-map {
    position: relative;
    width: 220px;
    height: 220px;
    border: 2px solid var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(46, 196, 182, 0.3);
}

.map-marker {
    width: 24px;
    height: 24px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(24, 107, 221, 0.6);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.map-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border-radius: 50%;
}

.signal-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--brand-teal);
    opacity: 0.4;
    animation: signalPulse 2s ease-in-out infinite;
}

.signal-waves-1 {
    animation-delay: 0s;
}

.signal-waves-2 {
    animation-delay: 0.7s;
    border-width: 1.5px;
}

.signal-waves-3 {
    animation-delay: 1.4s;
    border-width: 1px;
}

@keyframes signalPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.1;
    }
}

.route-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.route-marker {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--brand-teal);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(46, 196, 182, 0.8);
    animation: routeMarkerMove 3s ease-in-out infinite;
}

.route-marker-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.route-marker-2 {
    top: 50%;
    right: 25%;
    animation-delay: 1s;
}

.route-marker-3 {
    bottom: 20%;
    left: 40%;
    animation-delay: 2s;
}

@keyframes routeMarkerMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(10px, -10px) scale(1.2);
        opacity: 0.7;
    }
}

/* ============================================
   Why Suvela Section - Alternating Layout
   ============================================ */
.why-suvela {
    background-color: var(--white);
}

.why-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: var(--bg-cloud);
    border-radius: 16px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.why-item:nth-child(even) {
    grid-template-columns: 1fr 80px;
    background: linear-gradient(90deg, var(--bg-cloud) 0%, rgba(24, 107, 221, 0.03) 100%);
}

.why-item:nth-child(even) .why-icon {
    order: 2;
}

.why-item:nth-child(even) .why-content {
    order: 1;
}

.why-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--brand-teal);
}

.why-item:nth-child(even):hover {
    transform: translateX(-8px);
}

.why-icon {
    width: 80px;
    height: 80px;
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon.success {
    background-color: rgba(76, 175, 80, 0.15);
    color: var(--brand-success);
}

.why-icon.teal {
    background-color: rgba(46, 196, 182, 0.15);
    color: var(--brand-teal);
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-content {
    flex: 1;
}

.why-title {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
    font-weight: 700;
}

.why-description {
    color: #6B7280;
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: linear-gradient(180deg, var(--bg-cloud) 0%, rgba(24, 107, 221, 0.02) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1875rem;
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* Directors section - commented out for now
.directors-section {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid #E5E7EB;
}

.directors-title {
    font-size: 1.75rem;
    color: var(--text-charcoal);
    margin-bottom: 2rem;
    text-align: center;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 560px;
    margin: 0 auto;
}

.director-card {
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E5E7EB;
    transition: var(--transition);
}

.director-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.director-photo-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-cloud);
}

.director-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.director-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-charcoal);
    margin-bottom: 0.25rem;
}

.director-role {
    font-size: 0.9375rem;
    color: #6B7280;
    margin: 0;
}
*/

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.contact-hero .section-title {
    color: var(--white);
}

.contact-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-cloud) 0%, rgba(24, 107, 221, 0.03) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.contact-info-text {
    color: #6B7280;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--teal-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-method:hover .contact-method-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-teal) 100%);
    color: var(--white);
}

.contact-method-icon svg {
    width: 28px;
    height: 28px;
}

.contact-method-content {
    flex: 1;
}

.contact-method-title {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
    color: var(--text-charcoal);
    font-weight: 700;
}

.contact-method-link {
    color: var(--brand-primary);
    font-weight: 500;
    transition: var(--transition-fast);
    font-size: 1.0625rem;
}

.contact-method-link:hover {
    color: var(--brand-teal);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-charcoal);
    font-size: 0.9375rem;
}

.form-input,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background-color: var(--white);
    color: var(--text-charcoal);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(24, 107, 221, 0.1);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-note {
    font-size: 0.875rem;
    color: #6B7280;
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
}

/* ============================================
   Footer
   ============================================ */
/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

.btn-cta:hover {
    background-color: var(--bg-cloud);
    color: var(--primary-dark);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--text-charcoal);
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9375rem;
}

.footer-nav a:hover {
    color: var(--white);
    text-decoration: underline;
}

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

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 1.0625rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product .section-header {
        text-align: center;
    }

    .why-item {
        grid-template-columns: 80px 1fr !important;
    }
    
    .why-item:nth-child(even) {
        grid-template-columns: 80px 1fr !important;
    }
    
    .why-item:nth-child(even) .why-icon {
        order: 1 !important;
    }
    
    .why-item:nth-child(even) .why-content {
        order: 2 !important;
    }
    
    .why-item:hover {
        transform: translateX(8px) !important;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 34px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        width: 100%;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 5rem 0;
    }
    
    .gps-signal {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--brand-primary);
    outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
    }
}
