/* Design System - New Color Theme */
:root {
  --primary: #9bc400;      /* Grassy Green - Main CTA color */
  --primary-dark: #88ae00; /* Darker Grassy Green */
  --secondary: #8076a3;    /* Purple Mountains Majesty */
  --accent: #f9c5bd;       /* Misty Mountain Pink */
  --background: #ffffff;    /* White Background */
  --surface: #fafafa;      /* Light Surface */
  --surface-light: #f5f5f5;/* Lighter Surface */
  --text: #7c677f;         /* Factory Stone Purple */
  --text-light: #8076a3;   /* Purple Mountains Majesty */
  --border: rgba(155, 196, 0, 0.1); /* Grassy Green with opacity */
  --radius: 24px;
  --shadow: 0 8px 32px rgba(155, 196, 0, 0.12);
  --glow: 0 0 20px rgba(249, 197, 189, 0.25);
}

/* Gradient Variations */
.gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.gradient-surface {
  background: linear-gradient(135deg, var(--surface), var(--background));
}

.gradient-accent {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

/* Base Styles */
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #6c584c;
}

p {
    color: #a98467;
}

button {
    font-family: 'Roboto', sans-serif;
    background-color: #adc178;
    color: #f0ead2;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #dde5b6;
}

/* Navbar Styles */
.navbar {
    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);
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 800;
    position: relative;
    padding-left: 2rem;
}

.hero-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 8px;
    background: var(--primary);
    border-radius: 4px;
}

.hero-description {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--text);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--primary);
}

.hero-image {
    position: relative;
    height: 600px;
}

.hero-svg {
    width: 100%;
    height: auto;
    max-width: 800px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: floating 6s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(5px);
    animation: float 6s infinite ease-in-out;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section */
#about {
    padding: 50px;
    background-color: #f0ead2;
    color: #6c584c;
}

.about-divider {
    height: 50px;
    background: url('assets/about-divider.svg') no-repeat center center/cover;
}

.about-section {
    padding: 6rem 2rem;
    background: #f0ead2;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.retro-title {
    font-family: 'Righteous', sans-serif;
    font-size: 4rem;
    color: #6c584c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #a98467;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-box {
    background: rgba(173, 193, 120, 0.1);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Righteous', sans-serif;
    font-size: 2rem;
    color: #6c584c;
}

.stat-label {
    font-size: 0.875rem;
    letter-spacing: 1px;
    color: #a98467;
}

.tech-illustration {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.tech-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.circuit-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease forwards;
}

.code-symbol {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 2s;
}

.gear {
    transform-origin: center;
    animation: rotate 10s linear infinite;
}

.dots circle {
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

.dots circle:nth-child(2) {
    animation-delay: 0.5s;
}

.dots circle:nth-child(3) {
    animation-delay: 1s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.about-image {
    position: relative;
    height: 400px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .retro-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        order: -1;
    }
}

/* Services Section */
#services {
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Change to fixed 3 columns */
    gap: 2rem;
    padding: 0;
    margin-top: 4rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    fill: #adc178;
}

.service-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(108, 88, 76, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-item:hover {
    transform: scale(1.02);
}

.service-item h4 {
    font-size: 2rem;
    color: #6c584c;
    margin: 0;
    transition: transform 0.3s ease;
}

.service-arrow {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.service-item:hover h4,
.service-item.active h4 {
    transform: translateX(20px);
    color: #adc178;
}

.service-item:hover .service-arrow,
.service-item.active .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-preview {
    position: absolute;
    right: -350px;
    top: 50%;
    background: #dde5b6;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(173, 193, 120, 0.3);
    box-shadow: 0 15px 30px rgba(108, 88, 76, 0.1);
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.service-item:hover .service-preview {
    right: 50px;
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.preview-content h5 {
    color: #6c584c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #adc178;
}

.preview-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-content li {
    color: #6c584c;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(108, 88, 76, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.preview-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    opacity: 0;
    color: #adc178;
    transition: all 0.3s ease;
}

.preview-content li:hover {
    color: #adc178;
    padding-left: 1.5rem;
    background: rgba(240, 234, 210, 0.5);
}

.preview-content li:hover::before {
    opacity: 1;
}

@media (max-width: 1200px) {
    .service-preview {
        right: 0;
        width: 250px;
    }
    
    .service-item:hover .service-preview {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .service-preview {
        display: none;
    }
    
    .service-item {
        padding: 1.5rem 0;
    }
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(173, 193, 120, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6c584c;
}

/* Gallery Section */
#gallery {
    padding: 50px;
    background: #f0ead2;
    color: #6c584c;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-items img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-items img:hover {
    transform: scale(1.05);
}

/* Project Cards */
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card h3 {
    padding: 1rem;
    margin: 0;
}

.project-card p {
    padding: 0 1rem 1rem;
    color: #6c584c;
}

.project-svg {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.project-card:hover .project-svg {
    transform: scale(1.1);
}

.project-image {
    position: relative;
    overflow: hidden;
    background: #f0ead2;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 4/3;
}

.project-overlay {
    background: rgba(173, 193, 120, 0.95);
}

/* Animate SVG elements */
.project-svg rect,
.project-svg circle,
.project-svg path {
    transition: all 0.3s ease;
}

.project-card:hover .project-svg rect {
    fill: #dde5b6;
}

.project-card:hover .project-svg circle {
    fill: #adc178;
}

.project-card:hover .project-svg path {
    stroke: #6c584c;
}

/* Project SVG Animations */
.project-svg .bubble {
    animation: float 3s ease-in-out infinite;
}

.project-svg .pulse {
    animation: pulse 2s ease-in-out infinite;
    transform-origin: center;
}

.project-svg .heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

.project-svg .bar {
    animation: barRise 1s ease-out forwards;
    transform-origin: bottom;
}

.project-svg .coin {
    animation: spin 3s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(0.8); opacity: 0.8; }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.1); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    60% { transform: scale(1); }
}

@keyframes barRise {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Featured Projects Section */
.projects-section {
    background: linear-gradient(145deg, #f0ead2 0%, rgba(240, 234, 210, 0.5) 100%);
    padding: 4rem 0;
    margin: 2rem 0;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.projects-grid {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    -webkit-overflow-scrolling: touch;
}

.project-card {
    min-width: 280px;
    max-width: 300px;
    height: 400px;
    background: linear-gradient(145deg, #fff 0%, #f0ead2 100%);
    border-radius: 12px;
    border: 1px solid rgba(173, 193, 120, 0.2);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(108, 88, 76, 0.12);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.project-info {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
}

.project-category {
    color: #adc178;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.project-info h3 {
    color: #6c584c;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.project-info p {
    color: #a98467;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(108, 88, 76, 0.95), rgba(173, 193, 120, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.view-project {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .view-project {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .project-card {
        min-width: 260px;
        height: 380px;
    }

    .project-image {
        height: 180px;
    }

    .projects-grid {
        padding: 1rem 0;
    }
}

/* Hide scrollbar but keep functionality */
.projects-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (max-width: 768px) {
    .project-card {
        min-width: 260px;
        max-width: 280px;
    }
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(145deg, #f0ead2 0%, rgba(240, 234, 210, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(108, 88, 76, 0.08);
    border: 1px solid rgba(173, 193, 120, 0.2);
    backdrop-filter: blur(8px);
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(169, 132, 103, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    color: #6c584c;
    transition: all 0.3s ease;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 0.5rem;
    color: #a98467;
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #adc178;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(173, 193, 120, 0.1);
}

.contact-form input:focus + label,
.contact-form textarea:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label {
    transform: translateY(-1.5rem) scale(0.9);
    color: #6c584c;
    background: #f0ead2;
}

.contact-form .submit-btn {
    background: #6c584c;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.contact-form .submit-btn:hover {
    background: #a98467;
    transform: translateY(-2px);
}

.contact-form .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.contact-form .submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c584c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

/* Footer */
.footer-section {
    background: var(--surface);
    padding: 6rem 2rem 2rem;
    position: relative;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-col h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-col ul a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary);
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 20px;
}

.footer-col ul a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-float {
    animation: floating 3s ease-in-out infinite;
}

/* Modern Services Section */
.services-new-section {
    padding: 6rem 2rem;
    background: linear-gradient(145deg, 
        rgba(155, 196, 0, 0.05),
        rgba(128, 118, 163, 0.05));
}

.services-header-new {
    text-align: center;
    margin-bottom: 4rem;
}

.services-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(155, 196, 0, 0.1);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.services-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-new-card {
    background: var(--background);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-new-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(155, 196, 0, 0.1);
    border-color: var(--primary);
}

.service-new-card.featured {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: white;
}

.service-icon-new {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-features-grid span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-learn-more:hover span {
    transform: translateX(5px);
}

/* Contact Section - Improved */
.contact-card-section {
    padding: 6rem 2rem;
    background: linear-gradient(145deg, 
        rgba(155, 196, 0, 0.08),
        rgba(128, 118, 163, 0.08));
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(155, 196, 0, 0.1);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--background);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(155, 196, 0, 0.1);
    border-color: var(--primary);
}

.contact-card.primary {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: white;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(155, 196, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.contact-card.primary .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.card-link:hover .arrow {
    transform: translateX(5px);
}

.card-address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.6;
    color: inherit;
    opacity: 0.9;
}

@media (max-width: 968px) {
    .services-cards,
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .services-cards,
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .service-new-card,
    .contact-card {
        padding: 1.5rem;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 2rem;
    background: linear-gradient(145deg, 
        rgba(155, 196, 0, 0.05),
        rgba(128, 118, 163, 0.05));
    position: relative;
    overflow: hidden;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(155, 196, 0, 0.1);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.solutions-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.solutions-description {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--background);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(155, 196, 0, 0.1);
    border-color: var(--primary);
}

.solution-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.solution-icon svg {
    width: 100%;
    height: 100%;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.solution-features li {
    color: var(--text);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.solution-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.solution-link:hover {
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        padding: 2rem;
    }
}