* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

@media (max-width: 600px) {
    html {
        scroll-padding-top: 1.2rem;
    }
}

body {
    background-color: #121212;
    color: #f0f0f0;
    margin: 0;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(26, 26, 26, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.logo a:hover::after {
    width: 100%;
}

.logo span {
    color: #c5c2c2;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1.2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #a5a3a3;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1010;
    padding: 0;
    margin-left: 15px;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0 auto;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
    width: 80%;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.hamburger.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
    background: white;
}

.hamburger.active .hamburger-icon span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.hamburger.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
    background: white;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        height: 100vh;
        transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:hover {
        transform: translateY(-3px);
        transition: transform 0.3s ease;
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    
    .hamburger {
        display: block;
    }

    .hero-section {
        padding-top: 140px !important;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        position: fixed;
        padding: 1rem 5%;
        background-color: rgba(26, 26, 26, 0.98);
        padding-right: 10px;
    }
    
    .hamburger {
        margin-right: 5px;
    }
}

.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-selector a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px;
    transition: color 0.3s ease;
}

.language-selector a.active,
.language-selector a:hover {
    color: #fff;
}

.language-selector span {
    color: #555;
    margin: 0 5px;
}

.language-selector-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .language-selector {
        display: none !important;
    }
    
    .language-selector-mobile {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .nav-right {
        gap: 10px;
    }
}


.hero-section {
    padding: 150px 5% 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(76, 175, 80, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.06) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.025)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23heroGrid)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4C6E91;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(76, 110, 145, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #EACBD2, #D4B3BE);
    color: #333;
    box-shadow: 0 8px 25px rgba(234, 203, 210, 0.3);
}

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

.hero-btn.primary:hover::before {
    left: 100%;
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(193, 178, 214, 0.4);
    background: linear-gradient(135deg, #C1B2D6, #A89BBF);
}

.hero-btn.secondary {
    background: transparent;
    color: #EACBD2;
    border: 2px solid rgba(234, 203, 210, 0.8);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(193, 178, 214, 0.1);
    border-color: #C1B2D6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 178, 214, 0.2);
}


@media screen and (max-width: 768px) {
    .hero-section {
        padding: 120px 5% 80px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 100px 5% 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.portfolio-section {
    padding: 100px 5%;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.portfolio-description {
    text-align: center;
    color: #aaa;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.portfolio-carousel-container {
    position: relative;
    height: 450px;
    margin: 0 auto;
    perspective: 1200px;
    transform-style: preserve-3d;
    overflow: visible;
    max-width: 100%;
}

.portfolio-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.portfolio-item {
    position: absolute;
    width: 35%;
    height: 90%;
    top: 5%;
    left: 32.5%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: #222;
    transition: all 0.5s ease;
    backface-visibility: hidden;
    transform-origin: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.portfolio-item.spotlight {
    z-index: 10;
    transform: translateZ(150px) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.portfolio-item:not(.spotlight) {
    filter: brightness(0.9);
    transform: scale(0.9);
    z-index: 5;
}

.portfolio-item.left-card {
    transform: translateX(-80%) scale(0.85) rotateY(10deg) !important;
    filter: brightness(0.85);
    z-index: 4;
}

.portfolio-item.right-card {
    transform: translateX(80%) scale(0.85) rotateY(-10deg) !important;
    filter: brightness(0.85);
    z-index: 4;
}

.portfolio-image {
    height: 50%;
    width: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
}

.portfolio-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #4C6E91;
}

.portfolio-content p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tech-tag {
    padding: 4px 12px;
    border-radius: 20px;
    background-color: #2d2d2d;
    color: #c9c9c9;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-buttons {
    display: flex;
    gap: 10px;
}

.portfolio-btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.portfolio-btn.view-live {
    background-color: #EACBD2;
    color: #333;
}

.portfolio-btn.source-code {
    background-color: transparent;
    border: 1px solid #444;
    color: #ddd;
}

.portfolio-btn:hover {
    transform: translateY(-2px);
}

.portfolio-btn.view-live:hover {
    background-color: #C1B2D6;
}

.portfolio-btn.source-code:hover {
    border-color: #666;
    background-color: rgba(234, 203, 210, 0.15);
}

.portfolio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.portfolio-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;    background-color: rgba(234, 203, 210, 0.1);
    border: 1px solid rgba(234, 203, 210, 0.2);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.portfolio-control-btn:hover {
    background-color: rgba(234, 203, 210, 0.2);
    transform: scale(1.1);
}

.portfolio-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.portfolio-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(234, 203, 210, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-indicator.active {
    background-color: #EACBD2;
    transform: scale(1.2);
}

@media screen and (max-width: 992px) {
    .portfolio-carousel-container {
        height: 400px;
    }
    
    .portfolio-item {
        width: 60%;
        left: 20%;    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .portfolio-carousel-container {
        height: 420px;
    }
    
    .portfolio-item {
        width: 55%;
        left: 22.5%;
        height: 88%;
    }
    
    .portfolio-image {
        height: 58%;
    }
    
    .portfolio-item.left-card {
        transform: translateX(-65%) scale(0.8) rotateY(5deg) !important;
        filter: brightness(0.8);
    }
    
    .portfolio-item.right-card {
        transform: translateX(65%) scale(0.8) rotateY(-5deg) !important;
        filter: brightness(0.8);
    }
    
    .portfolio-content {
        padding: 18px;
    }
    
    .portfolio-content p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 768px) {
    .portfolio-item {
        width: 65%;
        left: 17.5%;
    }
    
    .portfolio-image {
        height: 55%;
    }
    
    .portfolio-item.left-card {
        transform: translateX(-70%) scale(0.85) rotateY(5deg) !important;
    }
    
    .portfolio-item.right-card {
        transform: translateX(70%) scale(0.85) rotateY(-5deg) !important;
    }
}

@media screen and (max-width: 576px) {
    .portfolio-section {
        padding: 70px 5%;
    }
    
    .portfolio-carousel-container {
        height: 380px;
    }
    
    .portfolio-item {
        width: 80%;
        left: 10%;
        height: 85%;
    }
    
    .portfolio-image {
        height: 68%;
    }
    
    .portfolio-content {
        padding: 15px;
    }
    
    .portfolio-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .portfolio-controls {
        margin-top: 30px;
    }
    
    .portfolio-content h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-content p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .tech-tag {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    .portfolio-buttons {
        flex-direction: column;
        gap: 5px;
    }
}

@media screen and (max-width: 480px) {
    .portfolio-carousel-container {
        height: 450px;
    }
    
    .portfolio-item {
        width: 85%;
        left: 7.5%;
    }
    
    .portfolio-image {
        height: 65%;
    }
    
    .portfolio-item:not(.spotlight):not(.left-card):not(.right-card) {
        opacity: 0;
    }
    
    .portfolio-item.left-card {
        transform: translateX(-50%) scale(0.7) rotateY(5deg) !important;
        opacity: 0.6;
    }
    
    .portfolio-item.right-card {
        transform: translateX(50%) scale(0.7) rotateY(-5deg) !important;
        opacity: 0.6;
    }
}

@media screen and (max-width: 576px) {
    .portfolio-section {
        padding: 70px 5%;
    }
    
    .portfolio-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}



.trust-section {
    padding: 100px 5%;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #4C6E91;
    font-weight: 700;
}


.section-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 6px;
    width: 100%;
    background-color: rgba(234, 203, 210, 0.3);
    z-index: -1;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.feature-item {
    background-color: #222;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #333, #555);
    transition: width 0.6s ease;
}

.feature-item.active::before {
    width: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item.active .feature-icon {
    transform: rotateY(360deg);
    background-color: #444;
}

.feature-item.active .feature-icon::after {
    opacity: 1;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #4C6E91;
    transition: transform 0.3s ease;
}

.feature-item p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.5;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.feature-item.active p {
    transform: translateY(0);
    opacity: 1;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background-color: #C1B2D6;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #333;
    transform: scale(0.8);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.testimonial-item.active .testimonial-image {
    transform: scale(1);
    opacity: 1;
    border-color: #555;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-content h4 {
    color: #4C6E91;
    margin-bottom: 5px;
}

.testimonial-role {
        color: #aaa;
    font-size: 0.9rem;
}



@media screen and (max-width: 768px) {
    .trust-section {
        padding: 70px 5%;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 600px) {
  .trust-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .trust-features .feature-item {
    min-width: 0;
  }
}


@media screen and (max-width: 768px) {
    .lead-form-button {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 45%;
    }
    
    .lead-form-button i {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .lead-form-button {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 40%;
    }
    
    .lead-form-button i {
        font-size: 1.4rem;
    }
}

.offer-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(76, 175, 80, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.05) 0%, transparent 40%);
}

.offer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="offerGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.025)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23offerGrid)"/></svg>');
    opacity: 0.4;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.offer-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.06) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    will-change: transform, opacity;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.08) 0%,
        rgba(33, 150, 243, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 175, 80, 0.3);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EACBD2, #D4B3BE);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover .card-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.offer-card:hover .card-icon::before {
    opacity: 1;
}

.card-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #EACBD2, #D4B3BE);
    transition: height 0.4s ease;
    border-radius: 0 0 2px 2px;
}

.offer-card.active .card-highlight {
    height: 100%;
}

.offer-card.active {
    will-change: auto; /* Remove will-change after animation completes */
}

.offer-card h3 {
    font-size: 1.5rem;
    color: #4C6E91;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
    font-weight: 400;
}

.price-highlight {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px 40px;
    text-align: center;
    margin: 50px auto;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid #333;
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.price-tag {
    display: flex;
    align-items: flex-start;
}

.euro-sign {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-left: 10px;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.no-monthly {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.one-time {
    color: #aaa;
    font-size: 1rem;
}

.offer-cta {
    text-align: center;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.offer-cta.active {
    opacity: 1;
    transform: translateY(0);
}
.lead-form-header p {
    color: #aaa;
    font-size: 0.95rem;
}

.lead-form-group {
    margin-bottom: 15px;
}

.lead-form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ddd;
    font-size: 0.9rem;
}

.lead-form-group input,
.lead-form-group select,
.lead-form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 4px;    background-color: rgba(234, 203, 210, 0.2);
    border: 1px solid rgba(234, 203, 210, 0.4);
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lead-form-group input:focus,
.lead-form-group select:focus,
.lead-form-group textarea:focus {
    outline: none;    border-color: #EACBD2;
    background-color: rgba(234, 203, 210, 0.2);
    box-shadow: 0 0 0 2px rgba(234, 203, 210, 0.2);
}

.lead-form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 30px;
    cursor: pointer;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.lead-form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.lead-form-submit {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #EACBD2;
    color: #333;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.lead-form-submit:hover {
    background-color: #D4B3BE;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 203, 210, 0.3);
}

.lead-form-whatsapp {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lead-form-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.lead-form-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.lead-form-close:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.story-section {
    background: linear-gradient(135deg, #1a1a1a, #121212);
    padding: 80px 5% 100px;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.story-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.story-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: scale(0.5);
    animation: storyIconFloat 3s ease-in-out infinite alternate;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #4C6E91;
    line-height: 1.3;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.story-title .highlight {
    background: linear-gradient(120deg, #f0f0f0, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
}

.intro-text p {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-text strong {
    color: #fff;
    font-weight: 600;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 320px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8B4513;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

.challenges-section {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
}

.challenges-title {
    font-size: 2.2rem;
    color: #4C6E91;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.challenge-item {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.challenge-item:hover::before {
    left: 100%;
}

.challenge-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #444;
}

.challenge-icon {
    background: linear-gradient(135deg, #ff4444, #cc3333);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 68, 68, 0.3);
}

.challenge-item h4 {
    font-size: 1.3rem;
    color: #4C6E91;
    margin-bottom: 15px;
    font-weight: 600;
}

.challenge-item p {
    color: #aaa;
    line-height: 1.6;
}

.solution-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
}

.solution-header {
    text-align: center;
    margin-bottom: 50px;
}

.solution-title {
    font-size: 2.5rem;
    color: #4C6E91;
    margin-bottom: 20px;
    font-weight: 700;
}

.brand-highlight {
    background: linear-gradient(120deg, #EACBD2, #D4B3BE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.solution-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #EACBD2, #D4B3BE);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #444;
}

.feature-icon-wrapper {
    background: linear-gradient(135deg, #EACBD2, #D4B3BE);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.feature-content h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    color: #aaa;
    line-height: 1.6;
}

.success-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(33, 150, 243, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(156, 39, 176, 0.08) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
}

.success-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.success-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(76, 175, 80, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.success-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.1) 0%,
        transparent 30%,
        rgba(33, 150, 243, 0.08) 70%,
        transparent 100%);
    opacity: 0;
    animation: contentGlow 6s ease-in-out infinite;
}

.success-text {
    position: relative;
    z-index: 3;
}

.success-title {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #fff 0%, #EACBD2 50%, #D4B3BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(76, 175, 80, 0.3);
    position: relative;
}

.success-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;    height: 4px;
    background: linear-gradient(90deg, #EACBD2, #D4B3BE);
    border-radius: 2px;
    animation: titleUnderline 2s ease-out 0.5s both;
}

.success-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-cta {
    margin-top: 30px;
}

.success-btn {
    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 50%, #C49AAB 100%);
    color: #333;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 20px rgba(76, 175, 80, 0.3),
        0 0 30px rgba(76, 175, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.success-btn:hover {
    transform: translateY(-5px) scale(1.05);    box-shadow: 
        0 20px 40px rgba(234, 203, 210, 0.4),
        0 0 60px rgba(234, 203, 210, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #D4B3BE 0%, #EACBD2 50%, #C49AAB 100%);
}

.success-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    position: relative;
    z-index: 3;
}

.stat-item {
    text-align: center;
    padding: 30px 25px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.1) 0%,
        rgba(33, 150, 243, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(76, 175, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:nth-child(1) {
    animation: statFloat 3s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation: statFloat 3s ease-in-out infinite 0.5s;
}

.stat-item:nth-child(3) {
    animation: statFloat 3s ease-in-out infinite 1s;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: block;
    text-shadow: 0 0 20px rgba(234, 203, 210, 0.3);
    position: relative;
    z-index: 2;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

@keyframes backgroundShift {
    0%, 100% { 
        background-position: 0% 50%, 100% 50%, 50% 0%;
        opacity: 0.8;
    }
    33% { 
        background-position: 30% 70%, 70% 30%, 80% 20%;
        opacity: 1;
    }
    66% { 
        background-position: 70% 30%, 30% 70%, 20% 80%;
        opacity: 0.9;
    }
}

@keyframes contentGlow {
    0%, 100% { 
        opacity: 0;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes titleUnderline {
    0% { 
        width: 0;
        opacity: 0;
    }
    100% { 
        width: 60px;
        opacity: 1;
    }
}

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

@keyframes storyIconFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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


main {
    padding-top: 110px;
}

@media (max-width: 900px) {
    main {
        padding-top: 90px;
    }
}

@media (max-width: 600px) {
    main {
        padding-top: 70px;
    }
}


@media screen and (max-width: 992px) {
    .success-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 40px;
    }
    
    .success-title {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .success-description {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .success-cta {
        text-align: center;
    }
    
    .success-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

@media screen and (max-width: 768px) {
    .success-section {
        padding: 50px 0;
        margin-top: 60px;
    }
    
    .success-content {
        padding: 40px 30px;
        border-radius: 20px;
        gap: 30px;
    }
    
    .success-title {
        font-size: 2.4rem;
    }
    
    .success-description {
        font-size: 1.2rem;
    }
    
    .success-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 576px) {
    .success-section {
        padding: 40px 0;
        margin-top: 40px;
    }
    
    .success-content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .success-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .success-title::after {
        width: 40px;
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .success-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .success-btn {
        padding: 14px 30px;
        font-size: 1rem;
        border-radius: 25px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

@media screen and (max-width: 480px) {
    .success-title {
        font-size: 1.8rem;
    }
    
    .success-description {
        font-size: 1rem;
    }
    
    .success-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}


.package-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.package-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(33, 150, 243, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(156, 39, 176, 0.08) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
}

.package-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="packageGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.025)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23packageGrid)"/></svg>');
    opacity: 0.4;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.package-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.package-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #EACBD2, #D4B3BE, #C49AAB);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

.package-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.package-item.active {
    opacity: 1;
    transform: translateY(0);
}

.package-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;    font-size: 1.5rem;
    color: #EACBD2;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.package-item:hover .package-icon {
    background: linear-gradient(135deg, #EACBD2, #D4B3BE);
    color: #333;
    transform: rotateY(360deg);
}

.package-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.package-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
       line-height: 1.6;
    font-weight: 400;
}

.package-pricing {
    text-align: center;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.pricing-highlight {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.pricing-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.pricing-highlight:hover::before {
    opacity: 1;
    animation: shimmer 2s ease-in-out;
}

.pricing-highlight.active {
    opacity: 1;
    transform: scale(1);
}

.pricing-highlight h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-highlight .price {
    color: #EACBD2;
    font-weight: 800;
    font-size: 2.5rem;
}

.pricing-note {
    color: #aaa;
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 500;
}

.package-cta {
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.package-cta.active {
    opacity: 1;
    transform: translateY(0);
}

.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right:  0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(33, 150, 243, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(156, 39, 176, 0.04) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)"/></svg>');
    opacity: 0.3;
}

.site-footer .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5% 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.footer-section {
    position: relative;
}


.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    transition: all 0.3s ease;
    filter: brightness(1);
}

.footer-logo img:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(234, 203, 210, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    color: #333;
    background: linear-gradient(135deg, #EACBD2, #D4B3BE);
    border-color: #EACBD2;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(234, 203, 210, 0.3);
}


.footer-title {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;    height: 3px;
    background: linear-gradient(90deg, #EACBD2, #D4B3BE);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #EACBD2, #D4B3BE);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}


.footer-cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #EACBD2, #D4B3BE);
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

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

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

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(193, 178, 214, 0.4);
    background: linear-gradient(135deg, #C1B2D6, #A89BBF);
}

.footer-cta-btn i {
    transition: all 0.3s ease;
}

.footer-cta-btn:hover i {
    transform: translateX(3px);
}


.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-item i {    width: 20px;
    color: #EACBD2;
    font-size: 1rem;
}

.contact-item span {
    transition: color 0.3s ease;
}

.contact-item:hover span {
    color: #fff;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-copyright .heart {
    color: #ff4757;
    animation: heartbeat 2s ease-in-out infinite;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}


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

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


.contact-form-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    animation: backgroundShift 12s ease-in-out infinite;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactGrid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contactGrid)"/></svg>');
    opacity: 0.4;
}

.contact-form-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EACBD2, #D4B3BE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: #333;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
    animation: pulse 2s infinite;
}

.contact-form-title {
    font-size: 2.8rem;
    color: #4C6E91;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-heading {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 15px 16px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;    border-color: #EACBD2;
    background: rgba(234, 203, 210, 0.25);
    box-shadow: 0 0 0 3px rgba(234, 203, 210, 0.2);
}


.form-group select option {
    background: #2a2a2a;
    color: #fff;
    padding: 10px;
}

.form-group select:invalid {
    color: rgba(255, 255, 255, 0.7);
}

.form-group select:valid {
    color: #fff;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 30px;
    cursor: pointer;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #EACBD2, #D4B3BE);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.form-group input:focus + .form-focus-line,
.form-group select:focus + .form-focus-line,
.form-group textarea:focus + .form-focus-line {
    width: 100%;
}

.form-submit-container {
    text-align: center;
    margin-top: 20px;
}

.form-submit-btn {
    background: linear-gradient(135deg, #EACBD2, #D4B3BE);
    color: #333;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 10px 20px rgba(234, 203, 210, 0.3),
        0 0 30px rgba(234, 203, 210, 0.2);
}

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

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 30px rgba(193, 178, 214, 0.4),
        0 0 40px rgba(193, 178, 214, 0.3);
    background: linear-gradient(135deg, #C1B2D6, #A89BBF);
}

.form-submit-btn .btn-text {
    transition: all 0.3s ease;
}

.form-submit-btn .btn-icon {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-content h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}


@media screen and (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    
    .contact-form-image {
        order: 1;
        padding: 15px;
    }
    
    .contact-form-wrapper {
        order: 2;
        padding: 30px;
    }
    
    .contact-form-image img {
        max-width: 250px;
    }
    
    .contact-form-title {
        font-size: 2.4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .contact-form-section {
        padding: 80px 5%;
    }
    
    .contact-form-header {
        margin-bottom: 40px;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
    
    .contact-form-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-image {
        padding: 10px;
    }
    
    .contact-form-image img {
        max-width: 200px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
        border-radius: 15px;
    }
    
    .form-heading {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .contact-benefits {
        gap: 20px;
    }
    
    .benefit-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-form-section {
        padding: 60px 5%;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .contact-form-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-image img {
        max-width: 180px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .form-heading {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .form-submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .container {
    padding: 50px 4% 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-brand {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .footer-section {
    margin-bottom: 30px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .site-footer .container {
    padding: 30px 2% 0;
  }
  .footer-content {
    gap: 20px;
  }
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  .footer-logo img {
    max-width: 120px;
    height: auto;
  }
  .footer-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 0;
    font-size: 0.9rem;
  }
  .footer-contact-info {
    font-size: 0.9rem;
  }
}


.limited-time-offer {
    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 50%, #C49AAB 100%);
    position: relative;
    padding: 80px 0;
    margin: 60px 0 0;
    overflow: hidden;
    text-align: center;
}

.limited-time-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.limited-time-offer .container {
    position: relative;
    z-index: 2;
}

.offer-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.offer-badge i {
    font-size: 1rem;
    animation: spin 3s linear infinite;
}

.offer-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.offer-urgency {
    margin-bottom: 30px;
}

.urgency-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slots-counter {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.slots-remaining {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.slots-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.slots-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.offer-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.offer-actions .cta-btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 250px;
    justify-content: center;
}

.primary-cta {
    background: #fff;
    color: #EACBD2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
    color: #EACBD2;
}

.secondary-cta {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.offer-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-highlight i {
    color: #fff;
    font-size: 1.1rem;
}


.offer-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    width: 40px;
    height: 40px;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    width: 80px;
    height: 80px;
}




@media screen and (min-width: 993px) {
  .contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
  }
  
  .contact-form-image {
    order: 1;
  }
  
  .contact-form-wrapper {
    order: 2;
    max-width: none;
    width: 100%;
  }
}


@media screen and (max-width: 768px) {
    .story-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-text {
        order: 1;
    }
    
    .intro-image {
        order: 2;
    }
    
    .image-placeholder {
        width: 250px;
        height: 180px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .story-intro {
        gap: 25px;
    }
    
    .image-placeholder {
        width: 300px;
        height: 250px;
    }
}


.contact-form-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-form-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.contact-form-image img:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(76, 175, 80, 0.3);
}


.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: rgba(244, 67, 54, 0.5);
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: rgba(76, 175, 80, 0.5);
}


.floating-whatsapp-btn {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    font-size: 2rem;
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.floating-whatsapp-btn:hover {
    background: #EACBD2;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}

.quote-btn-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.quote-btn.main-quote-btn {
  background: linear-gradient(90deg, #1e90ff 0%, #00c6ff 100%);
  color: #fff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(30,144,255,0.12);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.quote-btn.main-quote-btn:hover {
  background: linear-gradient(90deg, #00c6ff 0%, #1e90ff 100%);
  box-shadow: 0 6px 24px rgba(30,144,255,0.18);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
  .quote-btn-row {
    flex-direction: column;
    gap: 1rem;
  }
  .quote-btn.main-quote-btn {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }
}
/* --- Enhanced Three-Phase Workflow Section Styles --- */
.workflow-section {
  background: linear-gradient(135deg, #1a1a1a, #121212);
  padding: 80px 5%;
  color: #f0f0f0;
}
.workflow-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #e0e0e0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.workflow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.workflow-step {
  background: #222;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  padding: 30px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.workflow-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.workflow-icon-wrapper {
  margin-bottom: 20px;
}
.workflow-icon {
  background: linear-gradient(135deg, #5e60ce, #48bfe3);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.workflow-step-number {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #48bfe3;
}
.workflow-step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #e0e0e0;
}
.workflow-step-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #c0c0c0;
}
.workflow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 40px;
}
.workflow-divider span {
  display: block;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #5e60ce, #48bfe3);
  border-radius: 2px;
}
@media (max-width: 900px) {
  .workflow-steps {
    flex-direction: column;
    gap: 30px;
  }
  .workflow-divider {
    display: none;
  }
}