:root {
    /* Colors matches logo aesthetics */
    --clr-bg: #222222; /* Dark grey from the logo left bar and background */
    --clr-bg-alt: #1a1a1a;
    --clr-bg-card: #2c2c2c;
    --clr-accent: #0f4f48; /* Exact match or close to the teal/green on right bar */
    --clr-accent-light: #167a6f;
    --clr-accent-dark: #0a3530;
    --clr-text: #e5e7eb;
    --clr-text-muted: #9ca3af;
    --clr-white: #ffffff;
    
    /* Typography */
    --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
    
    /* Layout */
    --nav-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    color: var(--clr-white);
    line-height: 1.2;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

span.accent {
    color: var(--clr-accent-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    border-color: var(--clr-accent);
}

.btn-primary:hover {
    background-color: var(--clr-accent-light);
    border-color: var(--clr-accent-light);
    box-shadow: 0 4px 15px rgba(22, 122, 111, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--clr-white);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(34, 34, 34, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo specific styling based on user image */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1001;
}

.logo-icon {
    font-size: 2rem;
    color: var(--clr-white);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* match the centered look in logo */
    letter-spacing: 2px;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-white);
}

.logo-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 4px;
}

.logo-subtitle .line {
    color: var(--clr-text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--clr-text);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-accent-light);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--clr-white);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-white);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(15, 79, 72, 0.15) 0%, rgba(34, 34, 34, 1) 60%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat;
    opacity: 0.6;
}

/* 3D Decor Elements */
.hero-decor {
    position: absolute;
    z-index: 1;
    color: var(--clr-accent-light);
    opacity: 0.08;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

.left-decor {
    bottom: -5%;
    left: -2%;
    animation: zoom-effect 8s ease-in-out infinite alternate;
}

.lady-justice-img {
    height: 95vh;
    max-height: 1200px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    opacity: 0.85;
    filter: sepia(0.5) hue-rotate(120deg) brightness(1.1); /* gives it a teal glow matching var(--clr-accent-light) */
}

/* ChatBot Widget */
.chatbot-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3%;
    width: 440px;
    height: 500px;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, pulse-glow 3s infinite alternate;
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(-30%); }
    100% { opacity: 1; transform: translateY(-50%); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 10px rgba(22, 122, 111, 0.1); }
    100% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 40px rgba(22, 122, 111, 0.6); }
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: rgba(15, 79, 72, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--clr-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #10b981;
    border: 2px solid rgba(15, 79, 72, 1);
    border-radius: 50%;
}

.chat-header h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.chat-header p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.chat-messages {
    flex-grow: 1;
    padding: 1.2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}
.chat-messages::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.message {
    max-width: 85%;
    display: flex;
    flex-direction: column;
    animation: fadeInMsg 0.3s ease-out forwards;
}

@keyframes fadeInMsg {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.msg-content {
    padding: 0.8rem 1rem;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bot-message .msg-content {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 4px;
    color: var(--clr-text);
}

.user-message .msg-content {
    background: var(--clr-accent-light);
    border-bottom-right-radius: 4px;
    color: white;
}

.msg-time {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    margin-top: 0.3rem;
    align-self: flex-start;
}

.user-message .msg-time {
    align-self: flex-end;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.chat-input-area {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#chatForm {
    display: flex;
    gap: 0.5rem;
}

#chatInput {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.7rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

#chatInput:focus {
    outline: none;
    border-color: var(--clr-accent-light);
    background: rgba(255, 255, 255, 0.08);
}

.send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-accent-light);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.send-btn:hover {
    background: var(--clr-accent);
    transform: scale(1.05);
}

/* ChatBot Mobile Toggle Bubble */
.chatbot-bubble {
    display: none;
    position: fixed;
    bottom: 110px; /* Separado del botón de whatsapp */
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--clr-surface);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 0 2px var(--clr-accent) inset;
    z-index: 99;
    cursor: pointer;
    /* Removed overflow: hidden so badge can render outside */
    animation: bounce 2s infinite;
}

.chatbot-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Applied radius here instead */
}

.bubble-badge {
    position: absolute;
    top: 0px;
    right: -6px;
    background: #E41E26; /* Messenger exact red */
    color: white;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, arial, sans-serif;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--clr-surface); /* Para darle el efecto de recorte exacto de Messenger */
    z-index: 100;
    animation: badge-pop 2s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

@keyframes badge-pop {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 30, 38, 0.7); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 12px rgba(228, 30, 38, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 30, 38, 0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
    
    .chatbot-bubble {
        display: block; /* Show bubble on mobile */
    }

    .chatbot-container {
        display: none;
        position: fixed;
        top: auto;
        bottom: 110px;
        left: 5%;
        right: 5%;
        width: 90%;
        height: 45vh; /* Reduced height to drop the top edge down */
        max-height: 380px; /* Reduced max height */
        z-index: 100;
        transform: none;
    }
    
    .chatbot-container.active {
        display: flex; /* Shown when toggled via JS */
        animation: slideUpFade 0.3s ease-out forwards;
    }

    /* Lady Justice mobile positioning */
    .hero-decor.left-decor {
        display: block;
        opacity: 0.15;
        left: -30%;
        top: auto;
        bottom: 0;
        width: 150vw;
        pointer-events: none;
        z-index: 0;
    }
}

.decor-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 122, 111, 0.25) 0%, rgba(0,0,0,0) 70%);
    top: 10%;
    left: 0%;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 79, 72, 0.22) 0%, rgba(0,0,0,0) 70%);
    bottom: -10%;
    right: 0%;
}

@keyframes zoom-effect {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

@keyframes float3d-right {
    0%, 100% { transform: translateY(0) rotate(15deg) scale(1); }
    50% { transform: translateY(-40px) rotate(5deg) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: var(--clr-white);
    border: 1px solid rgba(255,255,255,0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Sections General */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

/* Services */
.services {
    background-color: var(--clr-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Slider Container and Controls */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 -1rem;
}

.slider-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--clr-accent);
    color: white;
    border: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 5;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--clr-accent-light);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.services-slider {
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 2rem;
    margin-bottom: -2rem;
    /* Added scroll behavior smooth for manual button clicks */
    scroll-behavior: auto;
}

/* Ocultar barra de scroll para el control manual */
.services-slider::-webkit-scrollbar {
    display: none;
}
.services-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.services-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.services-slider .service-card {
    min-width: 320px;
    max-width: 350px;
    flex: 0 0 auto;
}

.service-card {
    background-color: var(--clr-bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--clr-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 79, 72, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--clr-accent-light);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background-color: var(--clr-accent);
    color: var(--clr-white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--clr-accent-light);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* About Us */
.about {
    background-color: var(--clr-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

/* Mimics the 3 vertical bars from their logo */
.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--clr-bg-card);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.logo-bars {
    position: absolute;
    display: flex;
    gap: 20px;
    height: 70%;
    z-index: 1;
    opacity: 0.3;
}

.bar {
    width: 60px;
    border-radius: 30px;
}

.bar-bg {
    background-color: #1a1a1a;
}

.center-bar {
    height: 110%;
    transform: translateY(-5%);
}

.bar-accent {
    background-color: var(--clr-accent-light);
}

.giant-icon {
    font-size: 8rem;
    color: var(--clr-white);
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--clr-accent);
    color: var(--clr-white);
    padding: 2rem;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 3;
    border: 4px solid var(--clr-bg);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
}

.features-list {
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(15, 79, 72, 0.2);
    color: var(--clr-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.features-list h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.features-list p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* Contact */
.contact {
    background-color: var(--clr-bg-alt);
}

.contact-card {
    background-color: var(--clr-bg-card);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--clr-accent-dark) 0%, rgba(10,53,48,0.7) 100%);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat;
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--clr-accent-light);
    margin-top: 0.2rem;
}

.contact-form {
    padding: 4rem 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--clr-white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--clr-accent-light);
    background-color: rgba(0, 0, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--clr-text-muted);
}

/* Select wrapper styling for custom arrow */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-muted);
    pointer-events: none;
}

/* Footer */
footer {
    background-color: var(--clr-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.brand-col p {
    color: var(--clr-text-muted);
    margin-top: 1.5rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--clr-accent);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--clr-accent-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: var(--clr-white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--clr-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-bottom p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #20b858;
    color: #FFF;
    transform: translateY(-5px);
    box-shadow: 2px 5px 15px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .experience-badge {
        right: 10px;
        bottom: 10px;
        width: 140px;
        height: 140px;
        padding: 1.5rem;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--clr-bg);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        padding: 2rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hero {
        padding-top: calc(var(--nav-height) + 2rem);
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta a {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
