* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.logo {
    width: 100px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #000360;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-global {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: none;
    text-decoration: underline;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-global:hover {
    color: #000360;
}

.btn-primary {
    padding: 10px 20px;
    background: #000360;
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #000240;
}

.hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-items {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-menu-items li {
    margin-bottom: 20px;
}

.mobile-menu-items a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero .container {
    max-width: 1200px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.hero-video {
    width: 100%;
    height: 300px;
    background: #000;
    border-radius: 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: block;
}

/* Community Section */
.community-avatars {
    display: flex;
    justify-content: center;
    gap: -10px;
    margin-bottom: 20px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
}

.avatar:nth-child(1) { background: linear-gradient(45deg, #ff6b6b, #ff8e8e); }
.avatar:nth-child(2) { background: linear-gradient(45deg, #4ecdc4, #44a08d); }
.avatar:nth-child(3) { background: linear-gradient(45deg, #45b7d1, #2196f3); }
.avatar:nth-child(4) { background: linear-gradient(45deg, #96ceb4, #8bc34a); }

/* Since Section */
.since-section {
    text-align: center;
    padding: 40px 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.since-section .container {
    max-width: 1200px;
}

.since-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff3cd;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: #856404;
    margin-bottom: 40px;
}

.trophy-icon {
    width: 24px;
    height: 24px;
    background: url('/placeholder.svg?height=24&width=24') no-repeat center;
    background-size: contain;
}

/* Services */
.services {
    padding: 40px 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.services .container {
    max-width: 1200px;
}

.service-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 30px;
    margin-bottom: 15px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.service-btn:hover {
    border-color: #000360;
}

.service-btn i {
    font-size: 20px;
    color: #666;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.stats .container {
    max-width: 1200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    background: #000360;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000360;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Projects Carousel */
.projects {
    padding: 60px 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.projects .container {
    max-width: 1200px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 60px 40px;
    color: #000360;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: 470px;
}

.project-image {
    width: 100%;
    height: 450px;
    background: #000;
    border-radius: 20px;
    margin: 0;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 55 px;
}

.project-content p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.project-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 3, 96, 0.1);
    color: #000360;
    border: 1px solid rgba(0, 3, 96, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-tag:hover {
    background: rgba(0, 3, 96, 0.15);
    border-color: rgba(0, 3, 96, 0.3);
}

/* Hide project tags on mobile */
@media (max-width: 767px) {
    .project-tags {
        display: none;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #000360;
    transform: scale(1.2);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.testimonials .container {
    max-width: 1200px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #000360, #4ecdc4);
}

.testimonial-info h4 {
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Trusted Section */
.trusted {
    text-align: center;
    padding: 40px 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.trusted .container {
    max-width: 1200px;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 30px;
}

.trusted-avatars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.trusted-avatar {
    width: 100%;
    height: 80px;
    background: #000;
    border-radius: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg,#000366 0%,#1e40af 100%);
    border-radius: 40px;
    padding: 70px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,3,96,0.10);
}

.cta-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.cta-desc {
    color: rgba(255,255,255,0.92);
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 36px;
}

.cta-btn {
    font-size: 1.3rem;
    padding: 18px 44px;
    border-radius: 30px;
    background: #fff;
    color: #000366;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,3,96,0.10);
    transition: background 0.2s;
    display: inline-block;
}

/* Subscribe Section */
.subscribe-section {
position: relative;
z-index: 10;
margin-bottom: -60px; /* Half overlap with footer */
}

.subscribe-container {
background: white;
border-radius: 30px;
padding: 30px 40px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border: 2px solid #e5e7eb;
}

.subscribe-text {
font-size: 2rem;
font-weight: 700;
color: #000;
flex-shrink: 0;
}

.subscribe-form {
position: relative;
flex: 1;
max-width: 400px;
}

.subscribe-input-container {
position: relative;
display: flex;
align-items: center;
}

.subscribe-input {
width: 100%;
padding: 15px 50px 15px 50px;
border: 2px solid #e5e7eb;
border-radius: 25px;
font-size: 1rem;
outline: none;
transition: border-color 0.3s ease;
}

.subscribe-input:focus {
border-color: #3b82f6;
}

.subscribe-input::placeholder {
color: #9ca3af;
}

.mail-icon {
position: absolute;
left: 18px;
color: #9ca3af;
font-size: 18px;
z-index: 2;
}

.subscribe-btn {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
background: #1e40af;
color: white;
border: none;
padding: 10px 20px;
border-radius: 20px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 0.9rem;
}

.subscribe-btn:hover {
background: #1d4ed8;
}

@media (max-width: 600px) {
.subscribe-container {
flex-direction: column;
align-items: stretch;
gap: 18px;
padding: 18px 10px;
}
.subscribe-text {
font-size: 1.2rem;
margin-bottom: 6px;
text-align: center;
}
.subscribe-form {
max-width: 100%;
width: 100%;
}
.subscribe-input-container {
flex-direction: row;
width: 100%;
}
.subscribe-input {
font-size: 1rem;
padding: 13px 44px 13px 44px;
border-radius: 18px;
}
.subscribe-btn {
padding: 10px 14px;
font-size: 0.95rem;
border-radius: 16px;
}
}

/* FAQ */
.faq {
    padding: 60px 0;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.faq .container {
    max-width: 1200px;
    border-radius: 30px 30px 0 0;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 0;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 0 20px 0;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 30px;
    margin: 40px 0;
    opacity: 0;
    animation: fadeInUp 1s ease 1.4s forwards;
    position: relative;
    z-index: 2;
    border: 2px solid #e9ecef;
}

.newsletter .container {
    max-width: 1200px;
}

.newsletter h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg,rgba(0, 3, 96, 1) 0%, rgba(0, 6, 183, 1) 100%);
    color: white;
    padding: 30px 0 0;
    opacity: 0;
    animation: fadeInUp 1s ease 1.6s forwards;
    position: relative;
    overflow: hidden;
    margin-top: -60px;
    border-radius: 30px 30px 0 0;
}

.footer .container {
    max-width: 1200px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-top: 60px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 180px;
}

.eterna-logo {
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 900;
    opacity: 0.15;
    letter-spacing: -0.05em;
    line-height: 1;
    position: absolute;
    left: 50%;
    top: 85%;
    transform: translateX(-50%) translateY(-50%);
    white-space: nowrap;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation trigger class */
.animate-in {
    opacity: 1 !important;
    animation: fadeInUp 1s ease forwards !important;
}

/* Set initial opacity for animated sections */
.hero,
.since-section,
.services,
.stats,
.projects,
.testimonials,
.trusted,
.cta-section,
.faq,
.newsletter,
.footer {
    opacity: 0;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .nav-container {
        padding: 0 40px;
    }

    .container {
        padding: 0 40px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-video {
        height: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .cta-section {
        margin: 40px 0;
    }

    .newsletter {
        margin: 40px 0;
    }

    .carousel-slide {
        flex-direction: row;
        align-items: center;
        min-height: 600px;
    }

    .project-image {
        width: 450px;
        height: 400px;
        flex-shrink: 0;
    }

    .trusted-avatars {
        grid-template-columns: repeat(6, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer {
        padding: 120px 0 0;
        margin-top: -80px;
    }

    .footer-content {
        padding-top: 80px;
    }

    .footer-bottom {
        height: 220px;
    }

    .eterna-logo {
        font-size: clamp(160px, 15vw, 220px);
    }

    .menu-icon {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hero-video {
        height: 500px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-section {
        margin: 40px 0;
    }

    .newsletter {
        margin: 40px 0;
    }

    .eterna-logo {
        font-size: clamp(220px, 18vw, 280px);
    }
}

@media (min-width: 1200px) {
    .eterna-logo {
        font-size: clamp(280px, 20vw, 320px);
    }
}

@media (min-width: 1400px) {
    .eterna-logo {
        font-size: clamp(320px, 22vw, 360px);
    }
}

@media (min-width: 1600px) {
    .eterna-logo {
        font-size: clamp(360px, 25vw, 400px);
    }
}

/* Feature Section */
.feature-section {
    padding: 60px 0;
}
.feature-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    min-height: unset;
    max-height: unset;
}
.feature-image img {
    width: auto;
    height: auto;
    max-width: 420px;
    max-height: 600px;
    border-radius: 24px;
    display: block;
    object-fit: contain;
}
.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    max-width: 500px;
}
.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000360;
}
.feature-desc {
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.feature-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    gap: 12px;
}
.feature-list i {
    font-size: 1.3em;
    color: #000360;
}
.feature-btn {
    margin-top: 2px;
}
@media (min-width: 900px) {
    .feature-flex {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    .feature-image {
        flex: 1;
        max-width: 420px;
    }
    .feature-content {
        flex: 1;
        max-width: 500px;
    }
}
@media (max-width: 600px) {
    .feature-title {
        font-size: 1.3rem;
    }
    .feature-content {
        gap: 16px;
    }
    .feature-section {
        padding: 30px 0;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0 40px 0;
}
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.pricing-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    padding: 40px 30px;
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.pricing-card:hover {
    box-shadow: 0 8px 32px rgba(0,3,96,0.10);
    border-color: #000360;
}
.pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000360;
    margin-bottom: 10px;
}
.pricing-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000360;
    margin-bottom: 18px;
}
.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-left: 4px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.pricing-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    gap: 10px;
}
.pricing-features i {
    color: #1e40af;
    font-size: 1.2em;
}
.pricing-btn {
    margin-top: 10px;
    width: 100%;
    max-width: 220px;
}
@media (min-width: 900px) {
    .pricing-grid {
        flex-direction: row;
        gap: 40px;
        justify-content: center;
    }
    .pricing-card {
        min-width: 340px;
        max-width: 420px;
    }
}
@media (max-width: 600px) {
    .pricing-section {
        padding: 30px 0 20px 0;
    }
    .pricing-card {
        padding: 28px 12px;
    }
}

/* Contact Map Section */
.contact-map-section {
    padding: 60px 0 0 0;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}
.contact-map-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    margin-top: 40px;
}
#map {
    flex: 1 1 350px;
    min-width: 320px;
    height: 350px;
    border-radius: 25px;
    box-shadow: 0 4px 24px rgba(0,3,96,0.10);
    border: 2px solid #e5e7eb;
    overflow: hidden;
}
.contact-info-box {
    flex: 1 1 300px;
    min-width: 260px;
    background: linear-gradient(135deg, #000360 0%, #1a1a8c 100%);
    color: #fff;
    border-radius: 25px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0,3,96,0.10);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-info-box h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.5em;
    font-weight: 600;
}
.contact-info-box i {
    font-size: 1.3em;
    color: #4ecdc4;
}
.contact-info-box div {
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-info-box.full-height {
    height: 350px;
    min-height: 350px;
    justify-content: center;
}
@media (max-width: 900px) {
    .contact-map-section .container {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    #map, .contact-info-box {
        min-width: 0;
        width: 100%;
    }
    .contact-info-box.full-height {
        height: auto;
        min-height: 0;
    }
}

.btn-like {
    font-size: 1.3em;
    padding: 18px 48px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(16,185,129,0.10);
    font-weight: 600;
}

.menu-icon {
  width: 35px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.menu-icon:focus, .menu-icon:active {
  outline: none !important;
  box-shadow: none !important;
}
.menu-icon span {
  background: #000 !important;
  border: none !important;
  box-shadow: none !important;
  display: block;
  height: 4px;
  border-radius: 0px;
}

@media (max-width: 767px) {
  .mobile-menu-buttons .btn-global,
  .mobile-menu-buttons .btn-primary {
    font-size: 14px;
    padding: 7px 14px;
    border-radius: 18px;
  }
}

@media (max-width: 1023px) {
  .header-buttons {
    display: none !important;
  }
}

.nav-container .menu-icon {
  margin-right: 0;
  margin-left: -3px;
}

/* Improved Timeline Styles */
.timeline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 6px;
  background: #e9ecef;
  z-index: 0;
  border-radius: 3px;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 33.33%;
  min-width: 220px;
  gap: 18px;
}
.timeline-dot {
  font-size: 3rem;
  color: #000360;
  background: #fff;
  border-radius: 50%;
  border: 4px solid #000360;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  margin-top: 0;
  box-shadow: 0 4px 16px rgba(0,3,96,0.10);
}
.timeline-content {
  background: #f8f9fa;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(0,3,96,0.06);
  padding: 32px 28px 28px 28px;
  text-align: center;
  min-width: 180px;
  border: 2px solid #e9ecef;
  margin-top: 0;
  margin-left: 0;
  max-width: 260px;
}
.timeline-content h3 {
  color: #000360;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.timeline-content p {
  color: #333;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .timeline {
    max-width: 100%;
    gap: 0;
  }
  .timeline-item {
    min-width: 160px;
    max-width: 33vw;
  }
  .timeline-content {
    max-width: 180px;
    padding: 24px 12px 20px 12px;
  }
}
@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    gap: 60px;
    max-width: 600px;
    padding: 20px 0;
  }
  .timeline::before {
    left: 50%;
    top: 0;
    bottom: 0;
    right: auto;
    width: 6px;
    height: 100%;
    background: #e9ecef;
    transform: translateX(-50%);
    border-radius: 3px;
  }
  .timeline-item {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 32px;
    min-width: 0;
    max-width: 100%;
  }
  .timeline-dot {
    margin: 0;
    font-size: 2.2rem;
    width: 44px;
    height: 44px;
  }
  .timeline-content {
    margin-top: 0;
    margin-left: 12px;
    text-align: left;
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px 16px 10px;
  }
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: #fff;
    border-radius: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 24px rgba(0,3,96,0.04);
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}
.team-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000360;
    margin-bottom: 40px;
}
.team-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.team-card {
    background: #f8f9fa;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,3,96,0.06);
    padding: 32px 28px 28px 28px;
    text-align: center;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid #e9ecef;
}
.team-card:hover {
    box-shadow: 0 8px 32px rgba(0,3,96,0.10);
    transform: translateY(-4px) scale(1.03);
    border-color: #000360;
}
.team-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid #000360;
    background: #fff;
}
.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000360;
    margin-bottom: 6px;
}
.team-position {
    color: #666;
    font-size: 1rem;
    margin-bottom: 16px;
}
.team-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.team-socials a {
    color: #000360;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}
.team-socials a:hover {
    color: #4ecdc4;
    transform: scale(1.2);
}
@media (max-width: 900px) {
    .team-cards { gap: 18px; }
    .team-card { width: 90%; max-width: 320px; }
}
@media (max-width: 600px) {
    .team-section { padding: 30px 0; }
    .team-title { font-size: 1.3rem; }
    .team-card { padding: 18px 8px; }
}

/* Vision Section: prepare for per-letter color animation */
.vision-text {
    font-size: 3rem;
    font-weight: 900;
    color: #000360;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.1;
    letter-spacing: -1px;
    background: none;
    transition: color 0.3s;
    word-break: break-word;
}
.vision-text .vision-char {
    color: #8cb6b3;
    
    transition: color 0.3s;
}
.vision-text .vision-char.active {
    color: #000360;
}
@media (max-width: 900px) {
    .vision-text {
        font-size: 2.5rem;
    }
}
@media (max-width: 600px) {
    .vision-section { padding: 30px 0 20px 0; }
    .vision-text { font-size: 2rem; }
}

/* Sticky Scroll Sections */
.relative.custom-scroll-sections {
  position: relative;
  width: 100%;
}
.sticky-section {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 0;
}
.timeline-slide, .team-slide, .vision-slide {
  background: #fff !important;
  color: #000360;
}
.sticky-section .container {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .sticky-section .container {
    padding: 20px 8px;
  }
}
/* Remove margins/borders from old section classes for flush slides */
.timeline-section, .team-section, .vision-section {
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: none !important;
  padding: 0 !important;
}

.team-img-bg {
  background-image: url('assets/images/team/teama.webp');
  background-size: cover;
  background-position: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #000360;
  background-color: #fff;
  margin-bottom: 18px;
  pointer-events: none;
  user-select: none;
  box-shadow: 0 2px 8px rgba(0,3,96,0.10);
}

/* Business Types Section */
.business-types-section {
    padding: 40px 0;
    background: #fff;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}
.business-types-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0 10px 10px;
    scrollbar-width: thin;
    scrollbar-color: #e9ecef #fff;
    max-width: 1200px;
    margin: 0 auto;
}
.business-type-card {
    flex: 0 0 260px;
    min-width: 240px;
    max-width: 320px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px 20px 20px;
    text-align: left;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}
.business-type-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px;
    background: #f9f9f9;
}
.business-type-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.business-type-title-row span {
    font-size: 1.18em;
    font-weight: 600;
    color: #000360;
}
.business-type-title-row i {
    font-size: 1.2em;
    color: #000360;
    transition: transform 0.2s;
}
.business-type-card:hover .business-type-title-row i {
    transform: translateX(6px);
}
.business-type-desc {
    font-size: 0.98em;
    color: #444;
    opacity: 0.85;
    margin: 0;
    margin-bottom: 0;
}
.business-type-card:hover {
    border-color: #000360;
    box-shadow: 0 8px 25px rgba(0, 3, 96, 0.10);
}

@media (min-width: 900px) {
    .business-types-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 36px 36px;
        overflow-x: unset;
        padding: 0;
        justify-items: center;
        align-items: stretch;
        max-width: 1200px;
        margin: 0 auto;
    }
    .business-type-card {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        height: 240px;
        align-items: flex-start;
        padding: 32px 28px 22px 28px;
    }
}

@media (max-width: 700px) {
    .business-types-container {
        gap: 14px;
        padding-left: 6px;
    }
    .business-type-card {
        min-width: 160px;
        max-width: 180px;
        padding: 16px 8px 12px 8px;
    }
    .business-type-card img {
        width: 56px;
        height: 56px;
    }
    .business-type-title-row span {
        font-size: 1em;
    }
    .business-type-desc {
        font-size: 0.92em;
    }
}

/* Project Timeline Section */
.project-timeline-section {
    padding: 60px 0 40px 0;
    background: #f9f9f9;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}
.timeline-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000360;
    margin-bottom: 40px;
}
.timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.timeline-step {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    flex: 1 1 0;
    min-width: 180px;
    max-width: 220px;
    padding: 32px 18px 22px 18px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.timeline-step:hover {
    border-color: #000360;
    box-shadow: 0 8px 25px rgba(0, 3, 96, 0.10);
}
.timeline-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #000360;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,3,96,0.10);
}
.timeline-step h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000360;
    margin-bottom: 8px;
}
.timeline-step p {
    font-size: 0.98em;
    color: #444;
    opacity: 0.85;
    margin: 0;
}
/* Connecting lines for desktop */
.timeline-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 7%;
    right: 7%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}
.timeline-step:not(:last-child) {
    margin-right: 0;
}
.timeline-step .timeline-icon {
    position: relative;
    z-index: 2;
}
@media (max-width: 900px) {
    .timeline-steps {
        flex-direction: column;
        gap: 24px;
        max-width: 100%;
    }
    .timeline-steps::before {
        display: none;
    }
    .timeline-step {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        margin: 0 auto;
    }
}

/* Order Modal Styles */
.order-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.order-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,3,96,0.18);
  max-width: 420px;
  width: 100%;
  padding: 36px 28px 28px 28px;
  position: relative;
  animation: fadeInUp 0.5s;
}
.order-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #000360;
  cursor: pointer;
  z-index: 2;
}
.order-step {
  display: none;
}
.order-step[data-step] {
  display: block;
}
.order-step h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000360;
  margin-bottom: 18px;
  text-align: center;
}
.order-plan-options {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 24px;
}
.order-plan-option {
  padding: 18px 28px;
  border: 2px solid #e9ecef;
  border-radius: 18px;
  background: #f8f9fa;
  color: #000360;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,3,96,0.04);
}
.order-plan-option.selected, .order-plan-option:hover {
  border-color: #000360;
  background: #000360;
  color: #fff;
}
.order-form-group {
  margin-bottom: 16px;
}
.order-form-group input, .order-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.order-form-group input:focus, .order-form-group select:focus {
  border-color: #000360;
}
.order-step-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.order-summary {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 18px 14px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
}
.order-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border: none;
}
.order-whatsapp:hover {
  background: #1ebe57 !important;
}
@media (max-width: 600px) {
  .order-modal {
    padding: 18px 6px 12px 6px;
    max-width: 98vw;
  }
  .order-plan-options {
    flex-direction: column;
    gap: 10px;
  }
}

/* Big Order Form Styles for fillo-sot.php */
.big-order-section {
  padding: 60px 0 60px 0;
  background: #f8f9fa;
  min-height: 80vh;
}
.big-order-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,3,96,0.10);
  padding: 48px 36px 36px 36px;
  position: relative;
}
.big-order-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #000360;
  margin-bottom: 36px;
  text-align: center;
  letter-spacing: -1px;
}
.big-order-plan-options {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}
.big-order-plan-option {
  padding: 32px 48px;
  border: 3px solid #e9ecef;
  border-radius: 24px;
  background: #f8f9fa;
  color: #000360;
  font-weight: 700;
  font-size: 2rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(0,3,96,0.06);
  text-align: center;
}
.big-order-plan-option.selected, .big-order-plan-option:hover {
  border-color: #000360;
  background: #000360;
  color: #fff;
}
.big-order-form-group {
  margin-bottom: 28px;
}
.big-order-form-group input, .big-order-form-group select {
  width: 100%;
  padding: 22px 22px;
  border: 2.5px solid #e9ecef;
  border-radius: 16px;
  font-size: 1.4rem;
  outline: none;
  transition: border-color 0.2s;
  background: #f8f9fa;
}
.big-order-form-group input:focus, .big-order-form-group select:focus {
  border-color: #000360;
}
.big-order-form-group label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000360;
  margin-bottom: 8px;
  display: block;
}
.big-order-step-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 24px;
}
.big-btn-primary, .big-btn-global {
  font-size: 1.3rem;
  padding: 18px 44px;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(0,3,96,0.08);
  outline: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.big-btn-primary {
  background: #000360;
  color: #fff;
}
.big-btn-primary:hover {
  background: #1e40af;
}
.big-btn-primary:disabled {
  background: #e9ecef;
  color: #aaa;
  cursor: not-allowed;
}
.big-btn-global {
  background: #f8f9fa;
  color: #000360;
  border: 2px solid #000360;
}
.big-btn-global:hover {
  background: #000360;
  color: #fff;
}
.big-order-summary {
  background: #f8f9fa;
  border-radius: 18px;
  padding: 32px 18px;
  margin-bottom: 28px;
  font-size: 1.4rem;
  color: #222;
  line-height: 2.1;
  font-weight: 600;
}
.big-order-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border: none;
}
.big-order-whatsapp:hover {
  background: #1ebe57 !important;
}
@media (max-width: 900px) {
  .big-order-form {
    padding: 24px 8px 18px 8px;
    max-width: 98vw;
  }
  .big-order-plan-options {
    flex-direction: column;
    gap: 18px;
  }
  .big-order-plan-option {
    font-size: 1.3rem;
    padding: 18px 10px;
  }
  .big-order-title {
    font-size: 1.5rem;
  }
  .big-order-summary {
    font-size: 1.1rem;
    padding: 18px 6px;
  }
  .big-btn-primary, .big-btn-global {
    font-size: 1.1rem;
    padding: 12px 18px;
  }
}

/* Order Stepper Styles for fillo-projekt.php */
.order-stepper-form {
  border-radius: 24px;
  padding: 36px 24px 24px 24px;
  margin: 0 auto;
}
.order-stepper-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000360;
  margin-bottom: 24px;
  text-align: center;
}
.order-stepper-plan-options {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 18px;
}
.order-stepper-plan-option {
  padding: 18px 32px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  background: #f8f9fa;
  color: #000360;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,3,96,0.04);
  text-align: center;
}
.order-stepper-plan-option.selected, .order-stepper-plan-option:hover {
  border-color: #000360;
  background: #000360;
  color: #fff;
}
.order-stepper-form-group {
  margin-bottom: 16px;
}
.order-stepper-form-group input, .order-stepper-form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  background: #f8f9fa;
}
.order-stepper-form-group input:focus, .order-stepper-form-group select:focus {
  border-color: #000360;
}
.order-stepper-form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #000360;
  margin-bottom: 6px;
  display: block;
}
.order-stepper-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.order-stepper-indicator {
  margin-bottom: 24px;
}
.step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e5e7eb;
  border: 2px solid #e5e7eb;
  transition: all 0.2s;
}
.order-stepper-summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 18px 12px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #222;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .order-stepper-form {
    padding: 12px 2px 8px 2px;
  }
  .order-stepper-plan-options {
    flex-direction: column;
    gap: 10px;
  }
  .order-stepper-plan-option {
    font-size: 1rem;
    padding: 12px 8px;
  }
  .order-stepper-title {
    font-size: 1.1rem;
  }
  .order-stepper-summary {
    font-size: 0.98rem;
    padding: 10px 4px;
  }
}

@media (max-width: 600px) {
  .carousel-slide .project-image {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
  }
  .carousel-slide .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    display: block;
  }
}

/* Benefits Section */
.benefits-section {
    margin: 40px 0 0 0;
    padding: 40px 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}
.benefits-title {
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
    color: #000;
    font-size: 2rem;
}
.benefits-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
}
.benefit-card {
    background: #fff;
    border-radius: 30px;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px 18px;
    min-width: 220px;
    max-width: 260px;
    flex: 1 0 21%;
    text-align: center;
    scroll-snap-align: start;
    transition: box-shadow 0.2s, border-color 0.3s;
    margin-bottom: 10px;
}
.benefit-card:hover {
    border-color: #000360;
    box-shadow: 0 8px 25px rgba(0, 3, 96, 0.10);
}
.benefit-card i {
    font-size: 2.5rem;
    color: #000366;
    margin-bottom: 12px;
    display: block;
}
.benefit-card h3 {
    font-size: 1.1rem;
    margin: 12px 0 8px 0;
    font-weight: 500;
    color: #000360;
}
.benefit-card p {
    font-size: 0.97rem;
    color: #444;
}
@media (max-width: 991px) {
    .benefits-row {
        gap: 16px;
    }
    .benefit-card {
        min-width: 200px;
        max-width: 220px;
        flex: 0 0 60%;
    }
}
@media (max-width: 600px) {
    .benefits-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-left: 0 !important;
        margin-left: 0 !important;
        scroll-padding-left: 0 !important;
    }
    .benefit-card {
        min-width: 75vw;
        max-width: 80vw;
        flex: 0 0 auto;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    .benefit-card:first-child {
        margin-left: 0 !important;
        scroll-margin-left: 0 !important;
    }
    .benefits-title {
        font-size: 1.3rem;
    }
}

#subscribe-success {
    display: none;
    color: green;
    margin-top: 10px;
}

.section-padding-top {
  padding: 60px 0 0 0;
}

.flex-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: white;
  border-radius: 30px;
  padding: 40px 30px 30px 30px;
  margin-bottom: 30px;
}

.flex-card-reverse {
  flex-direction: row-reverse;
}

.flex-img {
  flex: 1 1 420px;
  min-width: 320px;
  max-width: 520px;
  display: flex;
  align-items: stretch;
}

.flex-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.flex-content {
  flex: 2 1 400px;
  min-width: 260px;
}

.flex-features {
  display: flex;
  gap: 24px;
  margin: 24px 0 0 0;
  flex-wrap: wrap;
}

.flex-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}