/* ========================================
   BUILDOVA - Custom Styles
   ======================================== */

:root {
    --primary-blue: #0a2463;
    --secondary-blue: #1e3a8a;
    --charcoal: #1e293b;
    --orange-accent: #f59e0b;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --text-dark: #0f172a;
    --gradient-start: #0a2463;
    --gradient-end: #1e3a8a;
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 15px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.875rem;
}

h1 {
    font-size: 2.15rem;
    font-weight: 700;
}

h2 {
    font-size: 1.85rem;
    font-weight: 700;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

/* ========================================
   TOP INFO BAR
   ======================================== */
.top-info-bar {
    background: linear-gradient(135deg, var(--primary-blue), #1e40af);
    color: var(--white);
    padding: 0.65rem 0;
    font-size: 0.875rem;
    border-bottom: 2px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.top-info-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-contact,
.top-social {
    position: relative;
    z-index: 1;
}

.top-contact a,
.top-social a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.top-contact a:hover,
.top-social a:hover {
    color: var(--orange-accent);
    transform: translateY(-2px);
}

.top-contact a i,
.top-social a i {
    margin-right: 0.4rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.top-contact a:hover i,
.top-social a:hover i {
    transform: scale(1.2);
}

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

.top-social a {
    margin-right: 0;
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.top-social a:hover {
    background: var(--orange-accent);
    transform: translateY(-3px) rotate(5deg);
}

@media (max-width: 768px) {
    .top-info-bar {
        display: none;
    }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98)) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    position: relative;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-accent), transparent);
    opacity: 0.5;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.navbar-brand i {
    font-size: 2.2rem;
    color: var(--orange-accent);
    background: linear-gradient(135deg, var(--orange-accent), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.navbar-brand span {
    background: linear-gradient(135deg, var(--orange-accent), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin: 0 0.75rem;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-accent), #fb923c);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--orange-accent) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-accent), #fb923c);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--orange-accent), #fb923c);
    color: var(--white) !important;
    padding: 0.65rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-nav-cta:hover::before {
    left: 100%;
}

.btn-nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)), 
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.88), rgba(30, 58, 138, 0.82));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease;
    font-weight: 300;
    opacity: 0.95;
}
.footer-logo{
    width: 200px;
    padding-bottom: 15px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--orange-accent), #fb923c);
    border: none;
    color: var(--white);
    padding: 0.9rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.25);
    min-width: 160px;
    text-align: center;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.35);
    color: var(--white);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.7rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 160px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-outline-custom:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

/* Button variant for sidebar */
.sidebar-box .btn-outline-custom {
    border-color: var(--primary-blue);
    color: var(--white);
    background-color: var(--primary-blue);
}

.sidebar-box .btn-outline-custom:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
    border-color: var(--secondary-blue);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 70px 0;
}

.section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section .row {
    justify-content: center;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.85rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-accent), #fb923c);
    border-radius: 3px;
}

.section-title p {
    color: var(--charcoal);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(10, 36, 99, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Unique images for each service */
.service-card:nth-child(1) img {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.3), rgba(30, 58, 138, 0.3)),
                url('https://images.unsplash.com/photo-1581094271901-8022df4466f9?w=800&q=80');
    background-size: cover;
    background-blend-mode: overlay;
}

.service-card:nth-child(2) img {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.3), rgba(30, 58, 138, 0.3)),
                url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=800&q=80');
    background-size: cover;
    background-blend-mode: overlay;
}

.service-card:nth-child(3) img {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.3), rgba(30, 58, 138, 0.3)),
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=800&q=80');
    background-size: cover;
    background-blend-mode: overlay;
}

.service-card-body {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.service-card-body h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
    text-align: center;
}

.service-card-body p {
    color: var(--charcoal);
    line-height: 1.7;
    text-align: center;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--orange-accent);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    width: 100%;
}

.service-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--charcoal);
    line-height: 1.6;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   FEATURE BOXES
   ======================================== */
.feature-box {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--orange-accent);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-box h4 {
    color: var(--primary-blue);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    text-align: center;
    width: 100%;
}

.feature-box p {
    color: var(--charcoal);
    text-align: center;
    width: 100%;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
    position: relative;
    padding: 3.5rem 0;
    margin-bottom: 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.95), rgba(30, 58, 138, 0.9));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.7rem 1.75rem;
    background: linear-gradient(135deg, var(--orange-accent), #fb923c);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-phone i {
    font-size: 1.15rem;
}

.cta-phone:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-content h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--charcoal);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
}

.about-content ul li {
    padding: 0.5rem 0;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.about-content ul li i {
    color: var(--orange-accent);
    margin-right: 0.5rem;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.service-detail {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.service-detail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--charcoal);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
}

.sidebar-box:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateY(-2px);
}

.sidebar-box h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.sidebar-box p {
    color: var(--charcoal);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    text-align: center;
    font-size: 0.95rem;
}

.services-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-menu li {
    margin-bottom: 1rem;
}

.services-menu li:last-child {
    margin-bottom: 0;
}

.services-menu a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ffffff, #fafbfc);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
    font-size: 1rem;
}

.services-menu a span {
    flex: 1;
}

.services-menu a:hover {
    background: linear-gradient(135deg, var(--orange-accent), #fb923c);
    color: var(--white);
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    border-color: transparent;
}

.services-menu a i {
    font-size: 2rem;
    color: var(--orange-accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: rgba(245, 158, 11, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.services-menu a:hover i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Service Detail Box */
.service-detail-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.service-detail-box h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
}

.service-detail-box h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-lead {
    font-size: 1.125rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ========================================
   PROJECT GALLERY
   ======================================== */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 300px;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(237, 137, 54, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    text-align: center;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid #e2e8f0;
    padding: 0.875rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--orange-accent);
    box-shadow: 0 0 0 0.2rem rgba(237, 137, 54, 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    background: var(--primary-blue);
    padding: 2rem;
    border-radius: 10px;
    color: var(--white);
    height: 100%;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--orange-accent);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-info-item div h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-item div p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-info-item div a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item div a:hover {
    color: var(--orange-accent);
}

.whatsapp-btn {
    background-color: #25d366;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: var(--white);
    margin-top: 0;
}

.footer-top {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h4 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand h4 i {
    color: var(--orange-accent);
    font-size: 2rem;
}

.footer-brand h4 span {
    color: var(--orange-accent);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--orange-accent);
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--orange-accent);
}

.footer h5 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-links a i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange-accent);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

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

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    /* margin-bottom: 1rem; */
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.footer-contact li i {
    color: var(--orange-accent);
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    padding-top:7px;
}

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

.footer-bottom {
    padding: 1.5rem 0;
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--orange-accent);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.9), rgba(30, 58, 138, 0.85)),
                url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 80px 0;
    position: relative;
    /* margin-top: 76px; */
}

.section-header p{
    margin-bottom: 40px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(44, 82, 130, 0.85));
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
}

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

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    line-height: 60px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section {
        padding: 45px 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

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

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

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

    .page-header-content h1 {
        font-size: 1.75rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 85px;
        right: 20px;
        font-size: 24px;
    }

    .back-to-top {
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        bottom: 20px !important;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.bg-light-custom {
    background-color: var(--light-gray);
    padding-bottom: 110px;
}

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

.text-primary-blue {
    color: var(--primary-blue);
}

/* ========================================
   CONTACT INFO BOX (Privacy/Terms Pages)
   ======================================== */
.contact-info-box {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid rgba(10, 36, 99, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
}

.contact-info-box h4 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-box h4 i {
    font-size: 1.75rem;
    color: var(--orange-accent);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 36, 99, 0.05);
}

.contact-item:hover {
    background: rgba(245, 158, 11, 0.05);
    transform: translateX(5px);
    border-color: rgba(245, 158, 11, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--orange-accent);
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
}

.contact-item a,
.contact-item span {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 5rem 0;
    margin-top: -2rem;

}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    color: var(--orange-accent);
    font-size: 3rem;
    /* margin-bottom: 1rem; */

}

.stat-number {
    color: var(--white);
    font-size: 2.45rem;
    font-weight: 700;
    margin-bottom: 0.5rem;

}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.process-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange-accent), #fb923c);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.process-icon {
    color: var(--primary-blue);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.process-step h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(10, 36, 99, 0.08);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: var(--orange-accent);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-author h5 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}