/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1a5f3b;
    --primary-light: #2d8659;
    --primary-dark: #145230;
    --secondary: #0d3b66;
    --accent: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 120px 0;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-green {
    color: #4ade80;
}

.text-yellow {
    color: #fbbf24;
}

.text-white {
    color: white;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ===== ICONS ===== */
.icon-small {
    width: 20px;
    height: 20px;
}

.icon-green {
    color: #4ade80;
    width: 24px;
    height: 24px;
}

.icon-yellow {
    color: #fbbf24;
    width: 20px;
    height: 20px;
}

.icon-check {
    color: #22c55e;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.icon-heart {
    color: #ef4444;
    width: 16px;
    height: 16px;
    fill: #ef4444;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(16px); opacity: 0.5; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--primary-light);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 20px !important;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

.nav-links.active .nav-link {
    color: var(--text-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 120px 24px 80px;
}

.hero-text {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .hero-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.benefit-card span {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px;
}

.section-label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.section-label-white {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.section-services {
    background: linear-gradient(to bottom, white, var(--bg-light));
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.service-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-content {
    padding: 32px;
}

.service-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(26, 95, 59, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-desc {
    color: var(--text-gray);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 8px;
}

.service-features li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== ABOUT SECTION ===== */
.section-about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 3rem;
    }
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(26, 95, 59, 0.05), rgba(26, 95, 59, 0.1));
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 4px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 280px;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.about-badge strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
}

.about-badge span {
    color: var(--text-gray);
    font-size: 14px;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--bg-light), white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 80px;
}

.values-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 48px;
}

.values-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.values-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .technology-section {
        grid-template-columns: 1fr 1fr;
    }
}

.technology-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.technology-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.technology-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.technology-list {
    list-style: none;
}

.technology-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* ===== CLIENTS SECTION ===== */
.section-clients {
    background: linear-gradient(to bottom, var(--bg-light), white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.client-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.client-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.client-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.client-card:hover img {
    transform: scale(1.1);
}

.client-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.client-sector {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Industries Section */
.industries-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 24px;
    padding: 48px;
    color: white;
    margin-bottom: 80px;
}

.industries-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 40px;
}

.industries-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.industries-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    font-weight: 500;
}

/* Results Section */
.results-section {
    margin-top: 80px;
}

.results-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 48px;
}

.results-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.results-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.results-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.results-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .results-image img {
        height: 500px;
    }
}

.results-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: white;
}

.results-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.results-overlay p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== TESTIMONIALS SECTION ===== */
.section-testimonials {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.testimonials-bg::before,
.testimonials-bg::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(60px);
}

.testimonials-bg::before {
    width: 300px;
    height: 300px;
    top: 80px;
    left: 40px;
}

.testimonials-bg::after {
    width: 400px;
    height: 400px;
    bottom: 80px;
    right: 40px;
}

.section-testimonials .container {
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-quote {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.star-filled {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    fill: #fbbf24;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

.testimonial-author .company {
    color: var(--primary);
    font-weight: 600;
    margin-top: 4px;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 64px;
}

@media (min-width: 768px) {
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: white;
}

.trust-badge img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.trust-badge strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.trust-badge span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== CONTACT SECTION ===== */
.section-contact {
    background: linear-gradient(to bottom, white, var(--bg-light));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 32px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 59, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 95, 59, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: white;
}

.contact-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.contact-card strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-card:hover strong {
    color: var(--primary);
}

.contact-detail {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    padding: 32px;
    color: white;
    box-shadow: var(--shadow-xl);
    margin-top: 16px;
}

.why-choose-us h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.why-choose-us ul {
    list-style: none;
}

.why-choose-us li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #111827, #1f2937, #111827);
    color: white;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    background: white;
    border-radius: 8px;
    padding: 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-info p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer a:hover {
    color: var(--primary-light);
}

.footer-contact span {
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #22c55e;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    background: #25d366;
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: white;
    color: var(--text-dark);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(calc(100% + 24px));
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    color: #22c55e;
    width: 24px;
    height: 24px;
}

/* ===== SPINNER ===== */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}