/* ========================
   CSS Variables & Reset
   ======================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Colors */
    --color-bg-base: #0A0A0A;
    --color-bg-teal: #2D9B8E;
    --color-bg-dark: #1A1A1A;
    --color-surface: #2A2A2A;
    --color-primary: #2D9B8E;
    --color-accent: #45C4B0;
    --color-text: #FFFFFF;
    --color-text-secondary: #B0B0B0;
    --color-border: #3A3A3A;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;

    /* Shadows */
    --shadow-glow: 0 0 20px rgba(45, 155, 142, 0.3);
    --shadow-glow-strong: 0 0 40px rgba(45, 155, 142, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Font Family */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary) !important;
    color: var(--color-text);
    background: var(--color-bg-base);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* ========================
   Animated Background - OPTIMIZED
   ======================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%); /* Animated background gradient */
    z-index: -2;
}

/* Subtle overlay with opacity animation instead of position animation */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(45, 155, 142, 0.03) 50%,
        transparent 100%
    );
    opacity: 0.5;
    animation: subtleGlow 15s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

/* Only animates OPACITY, not position - 60% less processing power! */
@keyframes subtleGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ========================
Glass Card effect
   ======================== */

.glass-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(69, 196, 176, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(69, 196, 176, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(69, 196, 176, 0.1);
}



/* ========================
   Hero Section
   ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.static-text {
    color: var(--color-text);
}

.typewriter-wrapper {
    display: inline-block;
    position: relative;
    min-width: min(850px, 100%);
    text-align: left;
    max-width: 100%;
}

.typewriter-text {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
}

/* Mobile: Allow text wrapping for typewriter */
@media (max-width: 768px) {
    .typewriter-text {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }
}

.typewriter-text::after {
    content: '|';
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #45C4B0, #2D9B8E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-text::after {
    content: '|';
    background: linear-gradient(135deg, #45C4B0, #2D9B8E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

.gradient-text-animated {
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-text),
        var(--color-primary)
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientTextShift 3s ease infinite;
}

@keyframes gradientTextShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #A0A0A0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #A0A0A0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.mt-4 {
    margin-top: 2.5rem;
}

.me-3 {
    margin-right: 1.5rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================
   SCROLL ANIMATIONS SYSTEM
   ======================== */

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Animation Variants */
.fade-in {
    opacity: 0;
}

.fade-in.animated {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
}

.fade-in-down.animated {
    animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
}

.fade-in-left.animated {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
}

.fade-in-right.animated {
    animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
}

.scale-in.animated {
    animation: scaleIn 0.8s ease-out forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
}

.slide-up.animated {
    animation: slideUp 0.8s ease-out forwards;
}

/* Stagger Delays for Multiple Elements */
.animate-on-scroll:nth-child(1) { animation-delay: 0s; }
.animate-on-scroll:nth-child(2) { animation-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { animation-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { animation-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { animation-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { animation-delay: 0.5s; }
.animate-on-scroll:nth-child(7) { animation-delay: 0.6s; }
.animate-on-scroll:nth-child(8) { animation-delay: 0.7s; }
.animate-on-scroll:nth-child(9) { animation-delay: 0.8s; }
.animate-on-scroll:nth-child(10) { animation-delay: 0.9s; }

/* Apply to Common Elements */
.glass-card,
.service-card,
.product-card,
.feature-card,
.benefit-card,
.testimonial-card,
.team-card,
.project-card,
.value-card,
.about-card,
.business-type,
section h1,
section h2,
section h3,
.section-title,
.hero-title,
.cta-card,
.footer-column {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.glass-card.animated,
.service-card.animated,
.product-card.animated,
.feature-card.animated,
.benefit-card.animated,
.testimonial-card.animated,
.team-card.animated,
.project-card.animated,
.value-card.animated,
.about-card.animated,
.business-type.animated,
section h1.animated,
section h2.animated,
section h3.animated,
.section-title.animated,
.hero-title.animated,
.cta-card.animated,
.footer-column.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .fade-in,
    .fade-in-down,
    .fade-in-left,
    .fade-in-right,
    .scale-in,
    .slide-up {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========================
   CTA Buttons
   ======================== */
.cta-button,
.cta-button-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-text);
    box-shadow: var(--shadow-glow);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow-strong);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform var(--transition-slow);
}

.cta-button:hover .button-glow {
    transform: translate(-50%, -50%) scale(2);
}

.cta-button-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-primary);
}

.cta-button-secondary:hover {
    background: rgba(45, 155, 142, 0.1);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--color-accent);
}

.btn-primary-custom {
    background: linear-gradient(135deg, #45C4B0, #2D9B8E);
    border: none;
    padding: clamp(12px, 2vw, 15px) clamp(30px, 4vw, 40px);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    border-radius: 50px;
    color: #0A0A0A;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(69, 196, 176, 0.3);
    color: #0A0A0A;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid #45C4B0;
    padding: clamp(10px, 2vw, 13px) clamp(30px, 4vw, 40px);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    border-radius: 50px;
    color: #45C4B0;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: rgba(69, 196, 176, 0.1);
    transform: translateY(-3px);
    color: #45C4B0;
}


/* Trust Signals */
#trust {
    padding: clamp(30px, 6vw, 60px) 0;
}
.trust-stat {
    text-align: center;
    padding: clamp(1rem, 2vw, 2rem);
}
.trust-stat h3 {
    font-size: clamp(1.5rem, 3vw, 2.0rem);
    font-weight: 700;
    color: #45C4B0;
    margin-bottom: 0.5rem;
}
.trust-stat p {
    color: #A0A0A0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}


/* ========================
    Section Title & Subtitle
   ======================== */

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #45C4B0, #2D9B8E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}


/* ========================
   Services Section
   ======================== */
#services {
    padding: clamp(40px, 8vw, 80px) 0;
    position: relative;
}

.services {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.service-card {
    height: 100%;
    text-align: center;
    padding: var(--spacing-md);
    border-radius: 20px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-icon {
    font-size: 3rem;
    color: #45C4B0;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.service-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.service-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.tag {
    padding: 0.4rem 1rem;
    background: rgba(45, 155, 142, 0.15);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-accent);
    transition: all var(--transition-fast);
}


.service-card:hover .tag {
    background: rgba(45, 155, 142, 0.25);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.service-card p {
    color: #A0A0A0;
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 1.7;
}

.service-card ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-card ul li {
    color: #A0A0A0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.service-card ul li:before {
    content: "✓";
    color: #45C4B0;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-link-custom {
    color: #45C4B0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 1rem;
}

.btn-link-custom:hover {
    color: #2D9B8E;
    text-decoration: underline;
}

/* ========================
   Projects Section
   ======================== */
.projects,
#projects {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: var(--spacing-lg);
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.project-image {
    height: clamp(200px, 30vw, 250px);
    overflow: hidden;
    position: relative;
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    color: var(--color-accent);
}

.project-content {
    padding: var(--spacing-md);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.project-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.project-link {
    display: inline-block;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: var(--spacing-sm);
    transition: all var(--transition-fast);
}

.project-link:hover {
    transform: translateX(5px);
    color: var(--color-primary);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.project-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(45, 155, 142, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.project-stats .stat {
    text-align: center;
}

.project-stats .stat strong {
    display: block;
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 0.2rem;
}

.project-stats .stat span {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.projects-showcase {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}


/* ========================
   About Section
   ======================== */

.about,
#about {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: #B0B0B0;
    margin-bottom: 1.5rem;
}

.about-text {
    max-width: 600px;
}

.about-description {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* ========================
    Why Choose Us Section
   ======================== */

#why-choose {
padding: clamp(40px, 8vw, 80px) 0;
position: relative;
}

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    font-size: 3rem;
    color: #45C4B0;
    margin-bottom: 1rem;
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.why-card p {
    color: #A0A0A0;
    font-size: 0.95rem;
}


/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}
.tech-item {
    text-align: center;
}
.tech-logo {
    font-size: 3rem;
    color: #45C4B0;
    margin-bottom: 0.5rem;
}
.tech-item p {
    color: #A0A0A0;
    font-size: 0.9rem;
}



/* ========================
   CONTACT SECTION
   ======================== */

.contact {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.contact .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact .section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    transition: all var(--transition-normal);
    border: 1px solid rgba(69, 196, 176, 0.2);
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-accent);
    text-decoration: none;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(45, 155, 142, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent);
    transition: all var(--transition-normal);
}

.contact-info-card:hover .contact-icon {
    background: var(--color-accent);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(69, 196, 176, 0.5);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--color-accent);
    transition: all var(--transition-normal);
}

.contact-info-card:hover .contact-icon i {
    color: var(--color-bg-dark);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.contact-info-card p {
    color: var(--color-accent);
    margin: 0;
    font-weight: 500;
}

.contact-info-card:hover p {
    color: #FFFFFF;
}

/* Contact Form Container */
.contact-form-container {
    padding: 3rem;
    border: 1px solid rgba(69, 196, 176, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-group .required {
    color: var(--color-accent);
    margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1.5px solid rgba(69, 196, 176, 0.2);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-secondary);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: rgba(42, 42, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(69, 196, 176, 0.1);
}

/* Custom Select Dropdown */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group .dropdown-icon {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    color: var(--color-accent);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group select:focus ~ .dropdown-icon {
    transform: rotate(180deg);
}

/* Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.contact-form .btn-primary-custom {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-form .btn-primary-custom i {
    transition: transform var(--transition-normal);
}

.contact-form .btn-primary-custom:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .contact .section-title {
        font-size: 2rem;
    }
}


/* ========================
   FOOTER SECTION
   ======================== */

.footer {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0D0D0D 100%);
    color: var(--color-text-secondary);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(69, 196, 176, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-accent) 50%,
        transparent 100%
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(69, 196, 176, 0.1);
}

/* Brand Column */
.footer-brand-col {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    filter: brightness(1.1);
    transition: all var(--transition-normal);
}

.footer-logo img:hover {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(69, 196, 176, 0.5));
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(69, 196, 176, 0.1);
    border: 1.5px solid rgba(69, 196, 176, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.25rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--color-accent);
    color: var(--color-bg-dark);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(69, 196, 176, 0.4);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Contact Info List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-contact span {
    color: var(--color-text-secondary);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand-col {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: var(--spacing-lg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        height: 40px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}