:root {
    /* Color Palette - 60/30/10 Rule */
    /* Primary (30%): Navy Blue - Trust, Professionalism */
    --primary-color: #003366;
    --primary-light: #004d99;
    --primary-dark: #002244;

    /* Secondary/Accent (10%): Gold/Orange - Highlight, Energy */
    --accent-color: #D4AF37;
    /* Metallic Gold */
    --accent-hover: #b8962e;
    --accent-light: #f4e5c2;

    /* Vibrant Colors */
    --vibrant-blue: #0066cc;
    --vibrant-gold: #FFD700;
    --success-green: #28a745;
    --info-blue: #17a2b8;

    /* Neutral/Background (60%): White/Light Gray */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* New Brand Color */
    --brand-light-blue: #23ace3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--vibrant-gold));
    border-radius: 2px;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 80px;
        opacity: 1;
    }
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.bg-light {
    background: var(--bg-gradient);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--vibrant-gold));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--brand-light-blue);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
}

header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.logo {
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 70px;
    width: auto;
    /* Removed filter as requested */
}

nav ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-white);
    /* White text for contrast on blue header */
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-white);
    /* White underline */
    transition: width var(--transition-fast);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-dark);
    /* Dark hover for contrast */
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-white);
    /* White icon */
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Header Contact Button */
.btn-header-contact {
    background: linear-gradient(135deg, var(--accent-color), var(--vibrant-gold));
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-header-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-header-contact:hover::before {
    width: 300px;
    height: 300px;
}

.btn-header-contact:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-header-contact i {
    font-size: 1.2rem;
}

/* Remove underline effect from header contact button */
.btn-header-contact::after {
    display: none;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85), rgba(0, 77, 153, 0.75)),
        url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-white);
    padding: 120px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-text {
    text-align: center;
}

.hero-company-name {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    color: var(--text-white);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 800;
}

.hero h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease-out 0.4s both;
    line-height: 1.6;
}

.hero h2::after {
    display: none;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.4s ease-out 0.6s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1.6s ease-out 0.8s both;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 1.8s ease-out 1s both;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.stat-item div {
    text-align: left;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .stat-item div {
        text-align: center;
    }

    .stat-item strong {
        font-size: 1.5rem;
    }
}

/* About Section */
#sobre {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
}


.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card:hover .card-icon {
    animation: none;
    transform: scale(1.2) rotate(5deg);
    transition: transform var(--transition-fast);
}

/* Services Section */
#servicos {
    background: linear-gradient(135deg, #e6f0fa 0%, #dbe9f6 100%);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.service-item {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color), var(--vibrant-gold));
    transition: height var(--transition-smooth);
}

.service-item:hover::after {
    height: 100%;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-color);
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.service-item p {
    flex-grow: 1;
    /* Push button to bottom */
}

.service-item:hover h3 {
    color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 50%, #fffbf0 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.contact-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--vibrant-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
    transition: all var(--transition-smooth);
}

.contact-card:hover .contact-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--accent-color), var(--vibrant-gold));
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--accent-color);
}

.instagram-link {
    font-weight: 700 !important;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-smooth);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* Scroll Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section>* {
    animation: fadeIn 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-container {
        padding: 0 var(--spacing-sm);
    }

    .logo img {
        height: 50px;
    }

    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--brand-light-blue);
        backdrop-filter: blur(10px);
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
    }

    nav.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .mobile-menu-btn {
        display: block;
    }

    .btn-header-contact {
        margin: 1rem 0 0 0;
        width: 100%;
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }
}

/* Image Styles */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-smooth);
}

.img-fluid:hover {
    transform: scale(1.02);
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.about-text {
    flex: 1;
}

.about-image-container {
    flex: 1;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}

/* Contact Wrapper & Overlapping Banner */
.contact-wrapper {
    position: relative;
    margin-top: 100px;
    /* Space for the overlapping banner */
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 10;

    /* Enhanced 3D Depth Effect */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 8px solid rgba(0, 34, 68, 0.8);
    /* Thicker bottom border for depth */
    border-right: 1px solid rgba(0, 34, 68, 0.5);

    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        /* Main shadow */
        0 10px 15px -3px rgba(0, 0, 0, 0.3),
        /* Ambient shadow */
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        /* Top highlight */
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    /* Bottom shade */

    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-banner:hover {
    transform: translateX(-50%) translateY(-5px);
    border-bottom-width: 10px;
}

.cta-text h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text h2::after {
    display: none;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Restored and Updated Button Style */
.btn-dark-action {
    background: linear-gradient(135deg, var(--accent-color), var(--vibrant-gold));
    color: var(--primary-dark);
    padding: 16px 40px;
    border-radius: 8px;
    /* Slightly rounded corners, distinct from pill buttons */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 0 #b8962e,
        /* 3D Button Border */
        0 5px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    border: none;
    position: relative;
    top: 0;
}

.btn-dark-action:hover {
    transform: translateY(2px);
    /* Press effect */
    box-shadow:
        0 2px 0 #b8962e,
        0 2px 5px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

/* Dark Contact Section */
.contact-section-dark {
    background-color: #0f172a;
    /* Dark Navy/Black */
    padding-top: 140px;
    /* Space for banner overlap */
    padding-bottom: 4rem;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .cta-banner {
        width: 90%;
        padding: 2.5rem;
        top: -120px;
        /* Raise the banner higher */
    }

    .contact-section-dark {
        padding-top: 180px;
        /* Increase padding to match new banner position */
    }
}

@media (max-width: 768px) {
    .cta-banner {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-bottom: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cta-banner:hover {
        transform: translateY(-5px);
    }

    .cta-text h2 {
        text-align: center;
        font-size: 1.8rem;
    }

    .cta-action {
        margin-top: 1.5rem;
    }

    .contact-section-dark {
        padding-top: 2rem;
    }

    .contact-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-list li i {
    color: var(--accent-color);
    margin-top: 4px;
}

.contact-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #ffffff;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        top: -60px;
    }

    .cta-text h2 {
        text-align: center;
        font-size: 1.5rem;
    }

    .cta-action {
        margin-top: 1.5rem;
    }

    .contact-section-dark {
        padding-top: 180px;
    }

    .contact-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Service Button Styles */
.btn-service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.btn-service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-service-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.btn-service-link:hover i {
    transform: translateX(5px);
}

/* FAQ Section Styles */
#faq {
    background-color: #f9fafb;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on content */
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .trust-bar .container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
    }
}

/* Services Parallax Banner */
.services-parallax-banner {
    width: 100%;
    height: 450px;
    background-image: url('images/accounting-services.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

/* Dark gradient overlay for depth */
.services-parallax-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 51, 102, 0.7) 0%,
            rgba(35, 172, 227, 0.5) 50%,
            rgba(0, 51, 102, 0.7) 100%);
    z-index: 1;
}

/* Animated accent line */
.services-parallax-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            var(--accent-color) 0%,
            var(--vibrant-gold) 50%,
            var(--accent-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@media (max-width: 768px) {
    .services-parallax-banner {
        background-attachment: scroll;
        /* Performance on mobile */
        height: 300px;
        border-radius: 10px;
    }
}

/* eGestor ERP Section Styles */
.egestor-section {
    background-color: #ffffff;
    overflow: hidden;
}

.egestor-container {
    max-width: 1200px;
}

.egestor-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.egestor-text {
    flex: 1;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.egestor-title-link {
    text-decoration: none;
    display: inline-block;
    transition: opacity var(--transition-fast);
}

.egestor-title-link:hover {
    opacity: 0.9;
}

.egestor-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.egestor-subtitle {
    font-size: 1.25rem;
    color: #666666;
    font-weight: 400;
    margin-bottom: 0;
}

.egestor-video-container {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.egestor-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.egestor-cta {
    display: flex;
    justify-content: center;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.btn-egestor {
    width: 100%;
    max-width: 28rem;
    padding: 0.75rem 2rem;
    background-color: #7CFFA0;
    color: #000000;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.btn-egestor:hover {
    background-color: #6DF090;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.02);
}

/* Responsive Design for eGestor Section */
@media (max-width: 768px) {
    .egestor-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .egestor-text {
        margin-bottom: 0;
    }

    .egestor-title {
        font-size: 1.875rem;
    }

    .egestor-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 769px) {
    .egestor-text {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .egestor-layout {
        gap: 4rem;
    }

    .egestor-title {
        font-size: 3rem;
    }

    .egestor-subtitle {
        font-size: 1.5rem;
    }
}