/* 
* Dominica Citizenship by Investment Landing Page
* Color Scheme:
* - Primary: #e3b64f
* - Secondary: #262626
* - Background: #ffffff
*/

/* Global Styles */
:root {
    --primary-color: #e3b64f;
    --secondary-color: #262626;
    --background-color: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #cccccc;
    --dark-gray: #777777;
    --success-color: #28a745;
    --error-color: #dc3545;
}
.logo-mobile-nav{
    display: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #c09835;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stat-number-mobile{
    line-height: 42px !important;
}
.cta-button {
    display: block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(227, 182, 79, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(227, 182, 79, 0);
    }
    100% {
        transform: scale(1);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

.section-header.light h2,
.section-header.light .section-subtitle {
    color: white;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: #262626;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
    position: relative;
  left: -40px;
  top: -5px;
}
.logo img{
    max-width: none;
    height: 85px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    margin-right: 100px;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #ffffff;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 44px;
    cursor: pointer;
    color: var(--primary-color);
    margin-left: 20px;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #262626;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 10px;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    .nav-links .logo{
        left: 0px;
    }
    .nav-links.active {
        right: 0;
        display: flex;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
        z-index: 1000;
        position: relative;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(to right, rgba(38, 38, 38, 0.6), rgba(38, 38, 38, 0.2)), url('../images/dominica-background.webp');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(227, 182, 79, 0.3);
    margin-top: 20px;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 3.2rem;
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    position: relative;
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 10px;
    right: -20px;
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #25D366;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-button:hover {
    background-color: transparent;
    color: #25D366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.hero-form-container {
    position: relative;
    width: 450px;
}

.consultant-image {
    position: absolute;
    bottom: -20px;
    left: -120px;
    z-index: -1;
    max-height: 400px;
    opacity: 0.9;
}

.consultant-image img {
    max-height: 400px;
}

.hero-shape {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('../images/wave-shape.svg') repeat-x;
    background-size: cover;
}

@media screen and (max-width: 992px) {
    .carousel-controls {
        position: absolute;
        top: 75%;
        width: 85%;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        z-index: 10;
      }
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .consultant-image {
        display: none;
    }
    
    .action-buttons {
        flex-direction: unset;
        gap: 15px;
        font-size: 12px;
        position: relative;
        left: -10px;
    }
}

/* Trusted By Section */
.trusted-by {
    padding: 40px 0;
    background-color: var(--light-gray);
    text-align: center;
}
.mini-heading {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--dark-gray);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    height: 150px;
    width: auto;
    max-width: 150px;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    background-color: var(--light-gray);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    border-bottom: 3px solid transparent;
}

.benefit-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

.icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

.benefits-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"%3E%3Cpath fill="%23ffffff" fill-opacity="1" d="M0,32L80,37.3C160,43,320,53,480,69.3C640,85,800,107,960,101.3C1120,96,1280,64,1360,48L1440,32L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
}

/* Process Section */
.process {
    background-color: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color) 70%, var(--medium-gray) 70%);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(227, 182, 79, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(227, 182, 79, 0.4);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--dark-gray);
}
.form-logo{
    width: 100px;
    height: 100px;
    margin: 10px auto;
    display: block;
}

/* Lines connecting process steps for desktop */
@media screen and (min-width: 769px) {
    .process-steps:before {
        content: '';
        position: absolute;
        top: 40px;
        left: 10%;
        right: 10%;
        height: 4px;
        background: var(--primary-color);
        z-index: 1;
    }
    
    .process-step:not(:last-child):after {
        content: '';
        position: absolute;
        top: 30px;
        right: -15px;
        width: 20px;
        height: 20px;
        border-top: 4px solid var(--primary-color);
        border-right: 4px solid var(--primary-color);
        transform: rotate(45deg);
        z-index: 2;
    }
}

/* Vertical layout for mobile */
@media screen and (max-width: 768px) {
    .cta-form{
        margin: auto auto;
    }
    .hero-form-container {
        width: 400px;
        left: -15px;
    }
    .heading{
        font-size: 38px;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-steps:before {
        top: 0;
        bottom: 0;
        left: 40px;
        right: auto;
        width: 4px;
        height: 90%;
        background: var(--primary-color);
    }
    
    .process-step {
        display: grid;
        grid-template-columns: 100px 1fr;
        text-align: left;
        gap: 20px;
    }
    
    .step-number {
        margin: 0;
    }
    
    .process-step:not(:last-child):after {
        content: '';
        position: absolute;
        left: 27px;
        top: calc(100% + 15px);
        width: 20px;
        height: 20px;
        border-left: 4px solid var(--primary-color);
        border-bottom: 4px solid var(--primary-color);
        transform: rotate(-45deg);
        z-index: 2;
    }
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.gallery-text {
    font-size: 1.1rem;
}

.gallery-features {
    margin-top: 20px;
}

.gallery-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.gallery-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.gallery-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.carousel-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.carousel-controls {
    position: absolute;
    bottom: 50%;
    width: 84%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-controls button {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-controls button:hover {
    background-color: var(--primary-color);
    color: white;
}

.prev {
    margin-right: auto;
}

.next {
    margin-left: auto;
}

/* Comparison Section */
.comparison {
    background-color: var(--light-gray);
    position: relative;
}

.comparison-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-button {
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-gray);
    position: relative;
    transition: all 0.3s ease;
}

.tab-button:focus {
    outline: none;
}

.tab-button:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active:after {
    width: 100%;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.investment-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.investment-option {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    width: 45%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.investment-option:hover {
    transform: translateY(-10px);
}

.investment-option.featured {
    border: 2px solid var(--primary-color);
}

.option-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-header {
    margin-bottom: 20px;
}

.option-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.option-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.option-features {
    margin-bottom: 30px;
    text-align: left;
}

.option-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.option-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.comparison-table .fa-check {
    color: var(--success-color);
}

.comparison-table .fa-times {
    color: var(--error-color);
}

.comparison-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"%3E%3Cpath fill="%23ffffff" fill-opacity="1" d="M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,42.7C1120,32,1280,32,1360,32L1440,32L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/bg-testimonials.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.testimonials h2 {
    color: white;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    flex: 1;
    min-width: 0;
    max-width: calc(33.333% - 20px);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.client-feedback {
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 600;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion {
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: block;
}

.accordion-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--light-gray);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 500px;
}

.accordion-item.active .fa-plus {
    transform: rotate(45deg);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 100px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    margin: 0 15px 10px;
}

.cta-feature i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 0px;
  max-width: 300px;
  position: relative;
  left: -30px;
}

.company-intro {
    color: #aaa;
    margin-bottom: 20px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

address p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

address p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-form {
    display: flex;
    margin-top: 15px;
}

.footer-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-form button {
    padding: 10px 15px;
    border: none;
    border-radius: 0 30px 30px 0;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    background-color: #c09835;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .stat-number-mobile{
        font-size: 22px !important;
        line-height: 26px !important;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .gallery-container {
        grid-template-columns: 1fr;
    }
    .process-step {
        width: 100%;
        margin-bottom: 30px;
    }
    .process-steps:before {
        display: none;
    }
    .investment-options {
        flex-direction: column;
        align-items: center;
    }
    .investment-option {
        width: 100%;
        max-width: 450px;
        margin-bottom: 30px;
    }
    .copyright {
        flex-direction: column;
    }
    .footer-links {
        margin-top: 15px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    header .cta-button {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-stats {
        flex-direction: unset;
        gap: 20px;
    }
    
    .stat-item:not(:last-child):after {
        display: none;
    }
    
    .testimonials-grid {
        flex-wrap: nowrap;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .logo-mobile-nav{
        display: block;
    }
    .cta-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: auto auto;
        display: block;
    }
    .hero-text{
        position: relative;
        left: -5px;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-button {
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-features {
        flex-direction: column;
    }
    
    .cta-feature {
        margin-bottom: 15px;
    }
}

/* WhatsApp CTA button */
.cta-button.pulse {
    background-color: #25D366; /* WhatsApp green */
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button.pulse::before {
    content: '\f232'; /* WhatsApp icon */
    font-family: 'Font Awesome 5 Brands';
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-button.pulse:hover {
    background-color: transparent;
    color: #25D366;
}

.cta-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    max-width: 100%;
    color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
}

.cta-form h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input.error,
.form-group select.error {
    border-color: var(--error-color);
}

.success-message {
    text-align: center;
    padding: 30px 0;
}

.success-message i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 15px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23262626' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 12px;
}

/* Desktop version carousel controls */
@media screen and (min-width: 993px) {
    .carousel-controls {
        position: absolute;
        top: 60%;
        left: 62%;
        transform: translate(-50%, -50%);
        width: 42%;
        display: flex;
        justify-content: space-between;
        z-index: 10;
    }
    
    .carousel-controls button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
} 