:root {
    --primary: #0a4d5c; 
    --accent: #20c997;  
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --bg-soft: #f8fbfb;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-soft);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.sub-brand {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.call-btn-nav {
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10, 77, 92, 0.2);
}

.call-btn-nav:hover {
    transform: translateY(-2px);
    background: var(--accent);
}

/* -- Hero Section -- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}

.hero-zoom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg.png'); 
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    animation: zoomInOut 20s infinite alternate;
    z-index: -2;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 77, 92, 0.8), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.accent {
    color: var(--accent);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.main-btn, .outline-btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.main-btn {
    background: var(--accent);
    color: var(--primary);
}

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

.main-btn:hover {
    background: var(--white);
    transform: scale(1.05);
}

.outline-btn:hover {
    background: var(--white);
    color: var(--primary);
}
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 5px;
    height: 5px;
    background: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 50%;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { top: 8px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
}

.side-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
}

.side-menu ul {
    list-style: none;
    margin-top: 40px;
}

.side-menu ul li {
    margin-bottom: 25px;
}

.side-menu ul li a {
    text-decoration: none;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--transition);
}

.side-menu ul li a:hover {
    color: var(--accent);
    padding-right: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}
@media (max-width: 992px) {
    .nav-links, .call-btn-nav {
        display: none; 
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }
}

.reveal, .reveal-delay, .reveal-delay-2 {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.reveal-delay { animation-delay: 0.3s; }
.reveal-delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.about {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.about-image-side {
    flex: 1;
    min-width: 400px;
    position: relative;
}

.image-box {
    position: relative;
    z-index: 1;
}

.floating-img {
    width: 100%;
    border-radius: 30px 100px 30px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: floatImg 6s ease-in-out infinite;
}

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

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--primary);
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(32, 201, 151, 0.4);
    z-index: 5;
}

.experience-badge .num {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
}

.shape-1 {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}
.about-text-side {
    flex: 1.2;
    min-width: 400px;
}

.sub-title {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.main-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    margin-bottom: 40px;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
}

.about-features i {
    color: var(--accent);
    font-size: 1.3rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image-side, .about-text-side {
        min-width: 100%;
    }

    .about-features li {
        justify-content: center;
    }

    .main-title {
        font-size: 2rem;
    }
}
.reveal-left {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s all ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s all ease;
}

.active-reveal {
    opacity: 1;
    transform: translateX(0);
}
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7f7 0%, #e6eeee 100%);
    position: relative;
    z-index: 1;
}
.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--accent) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: -1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    border-bottom-color: var(--accent);
    box-shadow: 0 20px 50px rgba(10, 77, 92, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-soft);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.service-card:hover .card-icon {
    background: var(--primary);
}

.service-card:hover .card-icon i {
    color: var(--white);
    transform: rotateY(360deg);
    transition: 0.6s;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}
.card-bg-icon {
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.03;
    transition: var(--transition);
    z-index: 1;
}

.service-card:hover .card-bg-icon {
    opacity: 0.08;
    transform: scale(1.2) rotate(-10deg);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s all ease;
}

.active-reveal-up {
    opacity: 1;
    transform: translateY(0);
}
.portfolio {
    padding: 100px 0;
    background-color: var(--bg-soft); 
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
    gap: 15px; 
}

.portfolio-item {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease; 
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 77, 92, 0.6); 
    backdrop-filter: blur(3px); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-overlay i {
    transform: scale(1);
}
@media (max-width: 500px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .portfolio-item {
        height: 160px;
    }
}
.why-us {
    padding: 100px 0;
    background: var(--primary); 
    position: relative;
    overflow: hidden;
    color: white;
}
.bg-shape {
    position: absolute;
    background: var(--accent);
    opacity: 0.05;
    z-index: 0;
    animation: floatBackground 10s infinite alternate;
}

.shape-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.shape-triangle {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes floatBackground {
    from { transform: translate(0, 0) rotate(0deg); }
    to { transform: translate(50px, 50px) rotate(20deg); }
}

.why-us-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.why-content {
    flex: 1;
    min-width: 350px;
}

.why-content .main-title {
    color: white;
}
.skills-bars {
    margin-top: 30px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: bold;
}

.progress-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
}

.progress-line span {
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
    position: absolute;
    width: 0;
    transition: 2s cubic-bezier(0.1, 0, 0.2, 1);
}
.why-cards-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    background: var(--white);
    transform: translateY(-10px) scale(1.03);
}

.feature-card:hover h3, .feature-card:hover p {
    color: var(--primary);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(32, 201, 151, 0); }
    100% { box-shadow: 0 0 0 0 rgba(32, 201, 151, 0); }
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-us-wrapper { flex-direction: column; text-align: center; }
    .why-cards-grid { width: 100%; }
}
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px; 
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.nav-links a.active {
    background-color: var(--accent); 
    color: var(--primary) !important; 
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
    transform: translateY(-2px);
    font-weight: 700;
}
.nav-links a:hover:not(.active) {
    color: var(--accent);
    background: rgba(32, 201, 151, 0.1);
}
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f4 0%, #d9e4e4 100%);
    position: relative;
    z-index: 1;
}

.contact::before {
    content: '';
    position: absolute;
    top: 10%; left: 5%; width: 200px; height: 200px;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
}

.contact-cards-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.contact-card {
    flex: 1;
    min-width: 350px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(10, 77, 92, 0.1);
}

.contact-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; width: 50px; height: 3px;
    background: var(--accent);
}
.card-intro { color: var(--text-light); margin-bottom: 30px; }

.method-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.method-details span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.method-details a {
    text-decoration: none;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 15px;
}

.wa-link {
    color: #25d366 !important;
    font-size: 0.95rem !important;
}
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    background: #fdfdfd;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--primary);
    opacity: 0.6;
}

.input-group textarea + i { top: 30px; }

.input-group input:focus { border-color: var(--accent); box-shadow: 0 0 10px rgba(32, 201, 151, 0.1); }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
}

.submit-btn i {
    font-size: 1.3rem;
    transition: 0.4s;
}

.submit-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

.submit-btn:hover i {
    transform: translateX(-10px) translateY(-5px) rotate(-10deg);
}

@media (max-width: 768px) {
    .contact-card { min-width: 100%; padding: 25px; }
    .method-details a { font-size: 1rem; }
}
.sub-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    margin-top: 20px;
}
.mini-card {
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(10, 77, 92, 0.1);
    border-color: var(--accent);
}
.mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.call .mini-icon { background: rgba(10, 77, 92, 0.1); color: var(--primary); }
.whatsapp .mini-icon { background: rgba(37, 211, 102, 0.1); color: #25d366; }
.location .mini-icon { background: rgba(255, 193, 7, 0.1); color: #ffc107; }

.mini-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

.mini-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
}
.full-width {
    grid-column: span 2;
    cursor: default;
}
@media (max-width: 450px) {
    .sub-cards-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
}
.main-footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-col h3 span {
    color: var(--accent);
}

.footer-col p {
    color: #b0bfc1;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; width: 40px; height: 2px;
    background: var(--accent);
}
.links-col ul { list-style: none; }
.links-col li { margin-bottom: 12px; }
.links-col a {
    color: #b0bfc1;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-col a i {
    font-size: 0.7rem;
    color: var(--accent);
}

.links-col a:hover {
    color: var(--accent);
    padding-right: 10px;
}
.contact-footer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #b0bfc1;
}

.contact-footer-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons-footer a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons-footer a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: #b0bfc1;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.dev-credit {
    margin-top: 10px;
}

.dev-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    border-bottom: 1px dashed var(--accent);
    transition: 0.3s;
}

.dev-credit a:hover {
    color: white;
    border-color: white;
}
@media (max-width: 768px) {
    .footer-grid {
        text-align: center;
    }
    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    .links-col a {
        justify-content: center;
    }
    .contact-footer-item {
        justify-content: center;
    }
    .social-icons-footer {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
        text-align: center;
    }

    .why-us-wrapper {
        flex-direction: column; 
        gap: 40px;
        width: 100%;
        padding: 0;
    }

    .why-content, .why-cards-grid {
        flex: none;
        width: 100%; 
        min-width: 0 !important; 
        padding: 0;
    }

    .why-content .main-title {
        font-size: 1.8rem; 
        margin-bottom: 20px;
    }
    .skill-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .skill-info {
        flex-direction: row; 
        justify-content: space-between;
        font-size: 0.9rem;
    }
    .why-cards-grid {
        display: grid;
        grid-template-columns: 1fr; 
        gap: 20px;
        width: 100%;
    }

    .feature-card {
        width: 100%;
        min-width: 0 !important;
        margin: 0 auto;
    }
        .reveal-left, .reveal-right {
        transform: translateY(30px); 
        transition: 1s all ease;
    }
}
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-f {
    background-color: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

.call-f {
    background-color: var(--primary);
    animation: pulse-call 2s infinite;
    animation-delay: 1s;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: white;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(10, 77, 92, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(10, 77, 92, 0); }
    100% { box-shadow: 0 0 0 0 rgba(10, 77, 92, 0); }
}

@media (max-width: 500px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}