/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

:root {
    /* Geofas Elegant White & Black Palette */
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --dark-gray: #404040;
    --medium-gray: #6b6b6b;
    --light-gray: #e5e5e5;
    --ultra-light-gray: #f5f5f5;
    --accent-gold: #c9a961;
    --accent-dark-gold: #b08d4a;
    --white: #ffffff;
    --off-white: #fafafa;
    --text-black: #1a1a1a;
    --text-gray: #6b6b6b;
    --text-light-gray: #999999;
    --gradient-black: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    --gradient-gold: linear-gradient(135deg, #c9a961, #d4b36a);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-accent: 0 4px 20px rgba(201, 169, 97, 0.25);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.65;
    color: var(--text-black);
    overflow-x: hidden;
    background: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-gold);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-black);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
}

p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-ghost {
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-black);
    color: var(--white);
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
    background: var(--gradient-gold);
    color: var(--primary-black);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.btn-ghost {
    background: rgba(201, 169, 97, 0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.4);
}

.btn-ghost:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 12px 28px;
    font-size: 13px;
}

.btn-outline {
    padding: 10px 24px;
    border: 2px solid var(--primary-black);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    color: var(--primary-black);
}

.btn-outline:hover {
    background: var(--primary-black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 10px 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-bottom-color: var(--light-gray);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-subtitle .check-icon {
    width: 14px;
    height: 14px;
    stroke: var(--accent-gold);
    flex-shrink: 0;
}

.logo-subtitle .blackgps {
    color: var(--primary-black);
    font-weight: 700;
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-menu a {
    color: var(--text-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(21, 101, 192, 0.1);
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text-black);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-close {
    display: none;
}

.mobile-cta {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 80px);
    max-width: 100%;
    margin: 0;
    padding-left: 20px;
}

.hero-content {
    text-align: left;
    max-width: 660px;
    margin: 0;
    margin-left: 70px;
    background: rgba(255, 255, 255, 0.4);
    padding: 50px 45px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-badge {
    display: inline-block;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    color: var(--accent-gold);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
    border: 1px solid var(--accent-gold);
}

.hero-title {
    font-size: 44px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 900;
    text-align: left;
}

.hero-subtitle {
    font-size: 16px;
    color: #2d2d2d;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    background: var(--accent-gold);
    color: var(--primary-black);
    border: none;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover {
    background: var(--accent-dark-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.feature-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-gold);
    flex-shrink: 0;
}

.feature-badge span {
    color: var(--primary-black);
    font-size: 13px;
    font-weight: 600;
}

/* Country Flags */
.country-flags {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
}

.flag-item {
    width: 40px;
    height: 28px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.flag-item:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4);
    border-color: var(--accent-gold);
}

.flag-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}



.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 26px;
    height: 45px;
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
        top: 20px;
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1.2s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1.2s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 22px;
    color: var(--text-gray);
    margin-top: 30px;
}

/* Features Section */
.features {
    background: var(--ultra-light-gray);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-black);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-accent);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-gold);
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--white);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--text-black);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-feature {
    display: inline-block;
    padding: 10px 24px;
    background: var(--accent-gold);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.btn-feature:hover {
    background: var(--accent-dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* Solutions Section */
.solutions {
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.solution-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.solution-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.solution-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solution-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.75) 0%, rgba(26, 26, 26, 0.9) 100%);
    opacity: 0.85;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.solution-card:hover .solution-image::before {
    opacity: 0.92;
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
    z-index: 2;
}

.solution-overlay h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 800;
}

.solution-overlay p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: var(--ultra-light-gray);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 80px;
    line-height: 1;
    color: var(--accent-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    margin-bottom: -30px;
    position: relative;
    z-index: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light-gray);
    line-height: 1.4;
}

/* Clients Section */
.clients {
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.client-logo {
    background: var(--ultra-light-gray);
    padding: 35px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-gray);
}

.client-logo:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--accent-gold);
}

.logo-placeholder {
    color: var(--light-gray);
    font-weight: 700;
    font-size: 14px;
}

/* New clients grid */
.clients-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.client-logo-new {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-gray);
}

.client-logo-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.client-logo-new img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-new:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.cta {
    background:
        linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%),
        url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2070&auto=format&fit=crop') center/cover;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 900;
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* Contact Section */
.contact {
    background: var(--ultra-light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 800;
}

.contact-info p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.contact-item:hover {
    background: var(--off-white);
    transform: translateX(10px);
    border-color: var(--accent-gold);
}

.contact-item svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-gold);
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--light-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-black);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #4a4a4a;
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 3px solid var(--accent-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-section h3 {
    font-size: 28px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-logo-item {
    display: inline-block;
}

.footer-logo-item img {
    height: 45px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.footer-logo-item:nth-child(2) img {
    height: 70px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Tech Performance Section */
.tech-performance {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tech-performance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, rgba(201, 169, 97, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.05) 87.5%, rgba(201, 169, 97, 0.05)),
        linear-gradient(150deg, rgba(201, 169, 97, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.05) 87.5%, rgba(201, 169, 97, 0.05));
    background-size: 80px 140px;
    opacity: 0.3;
    pointer-events: none;
}

.tech-performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tech-text {
    color: var(--white);
}

.tech-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
}

.tech-highlight {
    background: linear-gradient(135deg, #c9a961, #d4b36a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.tech-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.tech-logo {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
}

.tech-logo img {
    height: 35px;
    object-fit: contain;
}

.tech-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
    align-items: center;
}

.tech-device-dashboard {
    grid-column: 1 / -1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 3px solid rgba(201, 169, 97, 0.2);
}

.tech-device-dashboard:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(201, 169, 97, 0.3);
    border-color: var(--accent-gold);
}

.tech-device-dashboard img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tech-device-1,
.tech-device-2,
.tech-device-3 {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 3px solid rgba(201, 169, 97, 0.2);
    background: #fff;
    padding: 15px;
}

.tech-device-1:hover,
.tech-device-2:hover,
.tech-device-3:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(201, 169, 97, 0.3);
    border-color: var(--accent-gold);
}

.tech-device-1 img,
.tech-device-2 img,
.tech-device-3 img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: contain;
    transform: scale(1.8);
}

.tech-device-1 img {
    transform: scale(2.5);
}

.tech-device-2 img {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 42px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .clients-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .btn-primary,
    .navbar .btn-outline {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 40px;
        color: var(--dark-color);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .mobile-close:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 18px 0;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-cta {
        display: list-item !important;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid rgba(0, 0, 0, 0.05);
        list-style: none;
    }

    .btn-mobile-menu {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
        text-transform: none;
        letter-spacing: 0;
        border: none;
        cursor: pointer;
    }

    /* Hero Mobile */
    .hero .container {
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content {
        padding: 30px 20px;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.3;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-bottom: 40px;
        justify-content: center;
    }

    .hero-buttons .btn-large {
        width: 100%;
        padding: 16px 30px;
        font-size: 15px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-features {
        justify-content: center;
        gap: 12px;
    }

    .feature-badge {
        padding: 10px 16px;
    }

    .feature-badge span {
        font-size: 12px;
    }

    .feature-badge svg {
        width: 16px;
        height: 16px;
    }

    .country-flags {
        gap: 12px;
        margin-top: 25px;
        justify-content: center;
    }

    .flag-item {
        width: 35px;
        height: 24px;
        border-radius: 4px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form {
        padding: 35px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    section {
        padding: 80px 0;
    }

    .tech-performance-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tech-images {
        grid-template-columns: 1fr;
        order: -1;
    }

    .tech-device-1 {
        grid-column: 1;
    }

    .tech-title {
        font-size: 2rem;
    }

    .tech-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .hero .container {
        justify-content: center;
    }

    .hero-content {
        padding: 25px 15px;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .stat-number {
        font-size: 42px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .btn-large {
        padding: 16px 35px;
        font-size: 15px;
    }

    .tech-performance {
        padding: 60px 0;
    }

    .tech-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .tech-description {
        font-size: 1rem;
        text-align: center;
    }

    .tech-logo {
        display: flex;
        justify-content: center;
    }
}