/* EGS Metering Solutions - CSS Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

/* CSS Variables - EGS Design System */
:root {
    /* Colors */
    --primary: #4A90E2;
    --primary-dark: #2171d6;
    --secondary: #5CB85C;
    --secondary-dark: #449d44;
    --background: #ffffff;
    --foreground: #1f2937;
    --muted: #f8fafc;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4A90E2, #5CB85C);
    --gradient-hero: linear-gradient(135deg, #2171d6 0%, #4A90E2 50%, #5CB85C 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-elegant: 0 10px 30px -10px rgba(74, 144, 226, 0.3);
    --shadow-glow: 0 0 40px rgba(74, 144, 226, 0.2);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Typography */
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-green { color: var(--secondary); }
.text-muted { color: var(--muted-foreground); }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-10px); }
    70% { transform: translateY(-5px); }
    90% { transform: translateY(-2px); }
}

.animate-fade-in { animation: fadeIn 0.6s ease-out; }
.animate-slide-up { animation: slideUp 0.8s ease-out; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-bounce { animation: bounce 2s infinite; }

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-sm { padding: 0.5rem 1rem; font-size: var(--font-size-sm); }
.btn-lg { padding: 1rem 2rem; font-size: var(--font-size-lg); }
.btn-xl { padding: 1.25rem 2.5rem; font-size: var(--font-size-xl); }
.btn-full { width: 100%; }

.btn-hero {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-elegant);
    font-weight: 600;
}

.btn-hero:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.btn-cta {
    background: var(--gradient-hero);
    color: white;
    box-shadow: var(--shadow-glow);
    font-weight: 700;
    font-size: var(--font-size-lg);
    padding: 1rem 2rem;
}

.btn-cta:hover {
    box-shadow: var(--shadow-elegant);
    transform: scale(1.05);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-elegant);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 3rem;
    width: auto;
}

.company-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.company-tagline {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
    line-height: 1;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.floating-icon {
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 5rem;
    left: 2.5rem;
}

.icon-2 {
    top: 10rem;
    right: 5rem;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 10rem;
    left: 5rem;
    animation-delay: 2s;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    animation: fadeIn 0.6s ease-out 0.8s both;
}

.hero-social a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-social a:hover {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-btn:hover {
    color: white;
}

.scroll-btn span {
    font-size: var(--font-size-sm);
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    font-size: var(--font-size-lg);
    animation: bounce 2s infinite;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: fadeIn 0.6s ease-out;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out;
}

.section-title.white {
    color: white;
}

.section-description {
    font-size: var(--font-size-xl);
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.section-description.white {
    color: rgba(255, 255, 255, 0.9);
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-divider.white {
    background: rgba(255, 255, 255, 0.5);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--muted);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    space-y: 2rem;
}

.about-description {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.about-secondary {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 12px;
    flex-shrink: 0;
}

.feature-dot.blue { background: var(--primary); }
.feature-dot.green { background: var(--secondary); }

.feature-content h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
}

.about-visual {
    position: relative;
}

.about-card {
    aspect-ratio: 1;
    border-radius: var(--radius-2xl);
    background: var(--gradient-primary);
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
}

.about-card-content {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-logo-circle {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.about-card-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-card-content p {
    opacity: 0.8;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: -1rem;
    right: -1rem;
    width: 4rem;
    height: 4rem;
    background: var(--secondary);
}

.element-2 {
    bottom: -1rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    animation-delay: 1s;
}

/* Stats Section */
.stats {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.stats-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.stats .container {
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.stat-number {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.stat-line {
    width: 3rem;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.stat-card:hover .stat-line {
    width: 4rem;
}

.stats-bottom {
    text-align: center;
}

.stats-bottom p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-out;
}

.stats-mini {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mini-stat {
    text-align: center;
}

.mini-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: white;
}

.mini-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    animation: slideUp 0.8s ease-out;
}

.service-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: scale(1.05);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    box-shadow: var(--shadow-glow);
}

.service-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .service-header h3 {
    color: var(--primary);
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
}

.services-cta {
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.cta-card {
    background: var(--muted);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--muted);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    animation: slideUp 0.8s ease-out;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out;
}

.contact-card:hover {
    box-shadow: var(--shadow-elegant);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: var(--font-size-xl);
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--foreground);
}

.contact-details p {
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
}

.social-btn.linkedin { background: #0077b5; color: white; }
.social-btn.twitter { background: #1da1f2; color: white; }
.social-btn.instagram { background: #e4405f; color: white; }
.social-btn.whatsapp { background: #25d366; color: white; }

.social-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--foreground);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 3rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.footer-logo-text p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: white;
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .company-tagline {
        display: block;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: var(--font-size-5xl);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
    }
    
    .hero-title {
        font-size: var(--font-size-6xl);
    }
}

@media (max-width: 767px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .company-tagline {
        display: none;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-icon {
        display: none;
    }
}