/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #E8EBE5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1A584F 0%, #134E44 50%, #0F3D33 100%);
    min-height: 100vh;
    padding: 80px 0;
}

/* Floating Particles */
.floating-particles {
    pointer-events: none;
}

.floating-particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) translateX(var(--random-x));
        opacity: 0.2;
    }
}

/* Background Pattern */
.background-pattern {
    opacity: 0.1;
    pointer-events: none;
}

.pattern-circle {
    position: absolute;
    border: 2px solid white;
    border-radius: 50%;
}

.pattern-circle-1 {
    top: 40px;
    left: 40px;
    width: 128px;
    height: 128px;
    animation: pulse 2s infinite;
}

.pattern-circle-2 {
    top: 128px;
    right: 80px;
    width: 96px;
    height: 96px;
    border-width: 1px;
    animation: bounce 2s infinite;
}

.pattern-circle-3 {
    bottom: 80px;
    left: 25%;
    width: 64px;
    height: 64px;
    border-width: 1px;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badge .badge-content {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.gradient-text {
    background: linear-gradient(to right, #ffffff, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text {
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

/* Hero Button */
.btn-hero {
    background: linear-gradient(to right, #ffffff, #f3f4f6);
    color: #000000;
    border: none;
    padding: 20px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    background: linear-gradient(to right, #f3f4f6, #ffffff);
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.25);
}

.btn-hero:active {
    transform: scale(0.95);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Image */
.hero-image-container {
    animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) rotateY(15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 16px;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: scale(1.05) rotateY(-5deg);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    border-radius: 16px;
}

/* Tech Elements */
.tech-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    font-size: 1.5rem;
}

.tech-element-1 {
    top: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
    animation: spin 20s linear infinite;
}

.tech-element-2 {
    bottom: -16px;
    left: -16px;
    width: 64px;
    height: 64px;
    animation: float 3s ease-in-out infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-image {
        height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 16px 24px;
        font-size: 0.9rem;
    }
    
    .pattern-circle-1 {
        width: 80px;
        height: 80px;
        top: 20px;
        left: 20px;
    }
    
    .pattern-circle-2 {
        width: 60px;
        height: 60px;
        top: 80px;
        right: 40px;
    }
    
    .pattern-circle-3 {
        width: 40px;
        height: 40px;
        bottom: 40px;
    }
}

/* Overview Section */
.overview-section {
    padding: 80px 0;
}

.overview-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.5) 100%);
}

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

.overview-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.overview-badge {
    display: inline-block;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease 0.2s;
}

.overview-badge.animate-in,
.overview-header.animate-in .overview-badge {
    opacity: 1;
    transform: scale(1);
}

.overview-badge .badge-content {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(to right, #0d9488, #059669);
    color: white;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.overview-title {
    font-size: 3rem;
    color: #1A584F;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.overview-content-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(229, 231, 235, 1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.overview-content-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.overview-text {
    color: #374151;
    line-height: 1.75;
    font-size: 1.125rem;
}

.overview-paragraph {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.overview-content-card.animate-in .overview-paragraph:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.overview-content-card.animate-in .overview-paragraph:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.overview-content-card.animate-in .overview-paragraph:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1s;
}

.overview-paragraph:last-child {
    margin-bottom: 0;
}

/* Scroll Animation Base Class */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Overview */
@media (max-width: 991.98px) {
    .overview-title {
        font-size: 2.5rem;
    }
    
    .overview-content-card {
        padding: 2rem;
    }
    
    .overview-text {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .overview-section {
        padding: 60px 0;
    }
    
    .overview-title {
        font-size: 2rem;
    }
    
    .overview-content-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .overview-badge .badge-content {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #1A584F 0%, #134E44 50%, #0F3D33 100%);
    padding: 80px 0;
}

.services-background-pattern {
    opacity: 0.05;
    background-image: radial-gradient(circle at 25% 25%, white 2px, transparent 2px);
    background-size: 50px 50px;
    pointer-events: none;
}

.services-header {
    margin-bottom: 4rem;
}

.services-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.services-badge .badge-content {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card[data-index="0"].animate-in {
    transition-delay: 0.1s;
}

.service-card[data-index="1"].animate-in {
    transition-delay: 0.2s;
}

.service-card[data-index="2"].animate-in {
    transition-delay: 0.3s;
}

.service-card[data-index="3"].animate-in {
    transition-delay: 0.4s;
}

.service-card[data-index="4"].animate-in {
    transition-delay: 0.5s;
}

.service-card[data-index="5"].animate-in {
    transition-delay: 0.6s;
}

.service-card:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.1);
}

.service-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(13, 148, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-gradient-overlay {
    opacity: 1;
}

.service-card-header {
    padding: 2rem 2rem 1rem;
    position: relative;
    z-index: 10;
}

.service-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d9488, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.2);
}

.service-title {
    color: #1A584F;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.service-card-body {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.service-description {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features li {
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.6s ease;
}

.service-card.animate-in .service-features li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.service-card.animate-in .service-features li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.service-card.animate-in .service-features li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

.service-card:hover .service-features li {
    color: #374151;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #0d9488, #059669);
    border-radius: 50%;
    margin-right: 0.75rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li::before {
    transform: scale(1.5);
}

.btn-service {
    background: linear-gradient(to right, rgba(13, 148, 136, 0.05), rgba(5, 150, 105, 0.05));
    border: 2px solid rgba(13, 148, 136, 0.2);
    color: #1A584F;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate-in .btn-service {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.btn-service:hover {
    background: linear-gradient(to right, rgba(13, 148, 136, 0.1), rgba(5, 150, 105, 0.1));
    border-color: rgba(13, 148, 136, 0.3);
    color: #0d9488;
    transform: scale(1.05);
}

.btn-service:active {
    transform: scale(0.95);
}

.btn-service .btn-arrow {
    transition: transform 0.3s ease;
}

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

/* Hover Border Effect */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border-color 0.3s ease;
}

.service-card:hover::before {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Services */
@media (max-width: 991.98px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .service-card-header,
    .service-card-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .service-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .service-card-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .service-icon-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    .services-badge .badge-content {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
}

.why-choose-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.why-choose-header {
    margin-bottom: 4rem;
}

.why-choose-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.why-choose-badge .badge-content {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(to right, #0d9488, #059669);
    color: white;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.why-choose-title {
    font-size: 3rem;
    color: #1A584F;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.why-choose-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Cards */
.why-choose-card {
    background: linear-gradient(135deg, #1A584F 0%, #134E44 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(26, 88, 79, 0.2);
    border: none;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px);
}

.why-choose-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-card[data-index="0"].animate-in {
    transition-delay: 0.1s;
}

.why-choose-card[data-index="1"].animate-in {
    transition-delay: 0.2s;
}

.why-choose-card[data-index="2"].animate-in {
    transition-delay: 0.3s;
}

.why-choose-card[data-index="3"].animate-in {
    transition-delay: 0.4s;
}

.why-choose-card[data-index="4"].animate-in {
    transition-delay: 0.5s;
}

.why-choose-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(13, 148, 136, 0.2);
}

.why-choose-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-card:hover .why-choose-gradient-overlay {
    opacity: 1;
}

.why-choose-card-header {
    padding: 2rem 2rem 1rem;
    position: relative;
    z-index: 10;
}

.why-choose-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.why-choose-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.5s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: rotate(360deg) scale(1.2);
    background: rgba(255, 255, 255, 0.2);
}

.why-choose-card-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.why-choose-card-body {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.why-choose-description-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-description-text {
    color: white;
}

/* Hover Border Effect */
.why-choose-hover-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border-color 0.3s ease;
}

.why-choose-card:hover .why-choose-hover-border {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Why Choose */
@media (max-width: 1199.98px) {
    .why-choose-card {
        height: auto;
        min-height: 280px;
    }
}

@media (max-width: 991.98px) {
    .why-choose-title {
        font-size: 2.5rem;
    }
    
    .why-choose-description {
        font-size: 1rem;
    }
    
    .why-choose-card-header,
    .why-choose-card-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .why-choose-card {
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .why-choose-card-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .why-choose-icon-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .why-choose-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .why-choose-card-title {
        font-size: 1.125rem;
    }
    
    .why-choose-badge .badge-content {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .why-choose-card {
        min-height: 240px;
    }
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1A584F 0%, #134E44 50%, #0F3D33 100%);
    padding: 80px 0;
}

.cta-background-elements {
    opacity: 0.1;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border: 1px solid white;
    border-radius: 50%;
}

.cta-circle-1 {
    top: 25%;
    left: 25%;
    width: 128px;
    height: 128px;
    animation: rotateClockwise 30s linear infinite;
}

.cta-circle-2 {
    bottom: 25%;
    right: 25%;
    width: 96px;
    height: 96px;
    animation: rotateCounterClockwise 40s linear infinite;
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.final-cta-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.final-cta-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.final-cta-badge {
    display: inline-block;
    margin-bottom: 2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease 0.2s;
}

.final-cta-content.animate-in .final-cta-badge {
    opacity: 1;
    transform: scale(1);
}

.final-cta-badge .badge-content {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.final-cta-content.animate-in .final-cta-title {
    opacity: 1;
    transform: translateY(0);
}

.final-cta-button {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.final-cta-content.animate-in .final-cta-button {
    opacity: 1;
    transform: translateY(0);
}

/* Final CTA Button */
.btn-final-cta {
    background: linear-gradient(to right, #ffffff, #f3f4f6);
    color: #000000;
    border: none;
    padding: 24px 48px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-final-cta:hover {
    background: linear-gradient(to right, #f3f4f6, #ffffff);
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.25);
}

.btn-final-cta:active {
    transform: scale(0.95);
}

.btn-final-cta .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-rocket {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    animation: rocketFloat 2s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(10px) translateY(-5px);
    }
}

.btn-final-cta:hover .btn-rocket {
    animation: rocketLaunch 0.5s ease-out;
}

@keyframes rocketLaunch {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(15px) translateY(-10px) scale(1.2);
    }
    100% {
        transform: translateX(10px) translateY(-5px);
    }
}

/* Responsive Design for Final CTA */
@media (max-width: 991.98px) {
    .final-cta-title {
        font-size: 2.5rem;
    }
    
    .btn-final-cta {
        padding: 20px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .final-cta-section {
        padding: 60px 0;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .btn-final-cta {
        padding: 16px 32px;
        font-size: 0.9rem;
    }
    
    .final-cta-badge .badge-content {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .cta-circle-1 {
        width: 80px;
        height: 80px;
        top: 15%;
        left: 15%;
    }
    
    .cta-circle-2 {
        width: 60px;
        height: 60px;
        bottom: 15%;
        right: 15%;
    }
}