/* ===========================================
   RESET & BASE STYLES
=========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors from Logo */
    --primary-color: #FF6B35; /* Vibrant Orange from "ACCESS A" */
    --primary-dark: #E55A2B; /* Darker orange for hover */
    --secondary-color: #1A3A5F; /* Navy Blue from "PROPERTIES LIMITED" */
    --accent-color: #2ECA6A; /* Keep green as accent for CTAs */
    --accent-blue: #2D5F8B; /* Lighter blue for accents */
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #F8F9FA;
    --bg-dark: #1A3A5F; /* Navy blue for dark sections */
    --bg-gray: #2C3E50;
    --bg-gray-light: #34495E;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Updated gradients */
    --gradient: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%); /* Orange gradient */
    --gradient-blue: linear-gradient(135deg, #1A3A5F 0%, #2D5F8B 100%); /* Blue gradient */
    --gradient-mixed: linear-gradient(135deg, #FF6B35 0%, #1A3A5F 100%); /* Orange to Blue */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% {
        width: 80px;
    }
    50% {
        width: 100px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.text-center {
    text-align: center;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced Floating Animation */
.animate-float {
    animation: enhancedFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes enhancedFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translateY(-15px) rotate(5deg) scale(1.05);
    }
    75% { 
        transform: translateY(10px) rotate(-5deg) scale(0.95);
    }
}

/* ===========================================
   ENHANCED NAVBAR STYLES
=========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    transition: var(--transition);
    margin-left: 20px;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    margin-right: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.logo-img:hover {
    transform: rotate(-5deg);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-profile {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 300;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(46, 202, 106, 0.3);
}

.btn-profile::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.6s ease;
}

.btn-profile:hover::before {
    left: 100%;
}

.btn-profile:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(46, 202, 106, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 10px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary-color);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-color);
}

/* ===========================================
   PARTNERS HERO SECTION
=========================================== */
.partners-hero {
    height: 500px;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.8)),
                url('/img/hero-section/slide-1.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
        90deg,
        transparent,
        rgba(46, 202, 106, 0.2),
        rgba(255, 107, 53, 0.2),
        rgba(46, 202, 106, 0.2),
        transparent
    ); */
    animation: mirrorWipe 8s infinite linear;
    z-index: 3;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 107, 53, 0.2),
        rgba(46, 202, 106, 0.2),
        rgba(255, 107, 53, 0.2),
        transparent
    ); */
    animation: mirrorWipeReverse 8s infinite linear;
    animation-delay: 4s;
    z-index: 3;
}

@keyframes mirrorWipe {
    0% {
        left: -100%;
        opacity: 0.5;
    }
    50% {
        left: 0;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0.5;
    }
}

@keyframes mirrorWipeReverse {
    0% {
        right: -100%;
        opacity: 0.5;
    }
    50% {
        right: 0;
        opacity: 1;
    }
    100% {
        right: 100%;
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-container {
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-title {
    margin-bottom: 30px;
    line-height: 1.1;
    perspective: 1000px;
}

.hero-title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 15px 0;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.hero-title-animate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: textRotate 12s infinite;
}

.hero-title-animate:nth-child(1) {
    animation-delay: 0s;
}

.hero-title-animate:nth-child(2) {
    animation-delay: 4s;
}

.hero-title-animate:nth-child(3) {
    animation-delay: 8s;
}

@keyframes textRotate {
    0%, 33.33% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    36.33%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
}

/* ===========================================
   COUNTER SECTION
=========================================== */
.counter-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(46, 202, 106, 0.05) 50%, transparent 100%);
    animation: counterBgShift 10s linear infinite;
}

@keyframes counterBgShift {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: 30px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 202, 106, 0.1);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-item:hover::before {
    transform: translateX(0);
}

.counter-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.counter-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 202, 106, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-item:hover .counter-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.08) rotateY(180deg);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 2s infinite;
    opacity: 0;
}

.counter-item:hover .icon-pulse {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.counter-number-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
    flex-wrap: nowrap;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: inline-block;
    position: relative;
    text-shadow: 0 3px 10px rgba(46, 202, 106, 0.15);
    line-height: 1;
}

.counter-plus {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    position: relative;
    top: -0.2em;
}

.counter-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    transition: var(--transition);
    line-height: 1.2;
}

.counter-item:hover .counter-text {
    color: var(--primary-color);
    transform: translateY(3px);
}

/* ===========================================
   PARTNERS SHOWCASE SECTION
=========================================== */
.partners-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.partners-category {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(46, 202, 106, 0.1);
}

.partners-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(46, 202, 106, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.category-title {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 5px;
}

.category-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.partners-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(46, 202, 106, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.partner-logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 15px;
    background: rgba(46, 202, 106, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
    transition: var(--transition);
    z-index: 2;
    position: relative;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
}

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-card:hover .logo-overlay {
    opacity: 0.1;
}

.logo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
}

.partner-card:hover .logo-glow {
    opacity: 0.3;
}

.partner-info {
    margin-bottom: 20px;
}

.partner-name {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
    transition: var(--transition);
}

.partner-card:hover .partner-name {
    color: var(--primary-color);
}

.partner-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.partner-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.project-badge {
    background: rgba(46, 202, 106, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.partner-card:hover .project-badge {
    background: rgba(46, 202, 106, 0.2);
    transform: translateY(-3px);
}

.btn-view-partner {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 15px;
}

.btn-view-partner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-view-partner:hover::before {
    left: 0;
}

.btn-view-partner:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 202, 106, 0.3);
}

/* Coming Soon Card */
.partner-coming-soon {
    background: linear-gradient(135deg, rgba(46, 202, 106, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 2px dashed rgba(46, 202, 106, 0.3);
}

.coming-soon-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    animation: pulseComingSoon 2s infinite;
}

@keyframes pulseComingSoon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 202, 106, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(46, 202, 106, 0);
    }
}

.coming-soon-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
}

/* ===========================================
   PARTNERS TESTIMONIALS
=========================================== */
.partners-testimonials {
    padding: 100px 0;
    background: white;
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
}

.testimonial-slide {
    display: none;
    animation: slideInBlurred 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes slideInBlurred {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9) rotateY(10deg);
        filter: blur(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0);
        filter: blur(0);
    }
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 202, 106, 0.1);
    backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.15;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.author-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(46, 202, 106, 0.2);
    padding: 10px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.author-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 800;
}

.author-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.author-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.slider-prev,
.slider-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gradient);
    color: white;
    transform: scale(1.1) translateY(-5px);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===========================================
   PARTNERSHIP CTA
=========================================== */
.partnership-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A3A5F 0%, #2D5F8B 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1.1rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(46, 202, 106, 0.3);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 55px rgba(46, 202, 106, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
}

/* ===========================================
   UPDATED FOOTER WITH GRAY COLOR SCHEME
=========================================== */
.footer {
    background: var(--bg-gray);
    color: white;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    color: white;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo img:hover {
    transform: scale(1.1) rotate(-5deg);
}

.footer-logo h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
}

.footer-about {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    background: var(--bg-gray-light);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
}

.footer-bottom a:hover {
    color: white;
}

/* ===========================================
   MODAL STYLES
=========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 25px;
    max-width: 800px;
    margin: 50px auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid rgba(46, 202, 106, 0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
    transform-origin: center;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
}

.modal-close:hover {
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.modal-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 900;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.modal-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Partner Modal Styles */
.partner-modal-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.partner-modal-logo {
    text-align: center;
}

.partner-modal-logo img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 20px;
    background: rgba(46, 202, 106, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-modal-details h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 900;
}

.partner-modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.partner-modal-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(46, 202, 106, 0.1);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
}

.partner-modal-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.partner-modal-projects h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.projects-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.project-tag {
    background: rgba(46, 202, 106, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.partner-modal-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-contact-partner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    min-width: 200px;
}

.btn-contact-partner:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 202, 106, 0.4);
}

/* Profile Modal Styles */
.profile-modal .modal-body {
    padding: 30px;
    max-width: 900px;
    width: 100%;
}

.pdf-viewer {
    width: 100%;
    height: 500px;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 202, 106, 0.4);
}

/* ===========================================
   WHATSAPP FLOAT BUTTON
=========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseWhatsapp 2s infinite;
    backdrop-filter: blur(10px);
    border: none;
}

@keyframes pulseWhatsapp {
    0%, 100% {
        box-shadow: 0 20px 45px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 55px rgba(37, 211, 102, 0.6);
        transform: scale(1.1);
    }
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.15) rotateY(180deg);
    box-shadow: 0 25px 65px rgba(37, 211, 102, 0.5);
}

/* ===========================================
   RESPONSIVE DESIGN
=========================================== */
@media (max-width: 1200px) {
    .hero-title-line {
        font-size: 2.8rem;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .partners-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .partner-modal-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero-title-line {
        font-size: 2.2rem;
    }
    
    .partners-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-features {
        align-items: center;
    }
    
    .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .navbar.scrolled {
        height: 60px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        margin-left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
        text-align: left;
    }
    
    .nav-item {
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        text-align: left;
        border-radius: 10px;
        font-weight: 300;
        background: rgba(46, 202, 106, 0.05);
    }
    
    .nav-link:hover {
        background: rgba(46, 202, 106, 0.1);
        transform: translateX(10px);
    }
    
    .btn-profile {
        margin-top: 20px;
        align-self: flex-start;
    }
    
    .partners-hero {
        height: 400px;
        margin-top: 70px;
    }
    
    .hero-title-line {
        font-size: 1.8rem;
        letter-spacing: 2px;
        white-space: normal;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .counter-item {
        padding: 25px 15px;
        min-height: 170px;
    }
    
    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-plus {
        font-size: 1.6rem;
    }
    
    .counter-text {
        font-size: 0.85rem;
    }
    
    .partners-category {
        padding: 30px 20px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-content {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .partners-hero {
        height: 350px;
    }
    
    .hero-title-line {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .counter-item {
        padding: 20px 12px;
        min-height: 150px;
    }
    
    .counter-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .counter-number {
        font-size: 1.8rem;
    }
    
    .counter-plus {
        font-size: 1.4rem;
    }
    
    .counter-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 12px;
    }
    
    .btn-profile {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .partners-hero {
        height: 300px;
    }
    
    .hero-title-line {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .counter-item {
        min-height: 140px;
        padding: 15px 10px;
    }
    
    .counter-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .counter-number {
        font-size: 1.6rem;
    }
    
    .counter-text {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .btn-cta,
    .btn-cta-secondary {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
} 

/* Add this to your existing CSS */
.hero-title-animate {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
    margin: 15px 0 !important;
}