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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1003;
    padding: 0;
    transition: all 0.3s ease;
    border-radius: 0;
    overflow: visible;
    box-sizing: border-box;
    height: 70px;
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    grid-template-areas: "logo menu cta lang hamburger";
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.nav-logo {
    grid-area: logo;
    justify-self: start;
}

.nav-logo i{
    color: linear-gradient(to right, #3b82f6, #9d14cb);
}

.nav-logo a {
    text-decoration: none !important;
    color: inherit;
}

.nav-logo a:hover {
    text-decoration: none !important;
}

.logo-placeholder {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.logo-placeholder img {
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    max-height: 70px !important;
    max-width: 260px;
    height: 70px !important;
    width: auto;
    object-fit: contain;
}

.logo-placeholder i {
    color: #6b7280;
}

.nav-menu {
    grid-area: menu;
    justify-self: end;
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6b7280;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #6b7280;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    grid-area: cta;
    margin-left: 0.5rem !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    display: inline-block !important;
    white-space: nowrap !important;
    height: auto !important;
    line-height: 1.5 !important;
    vertical-align: middle !important;
    align-self: center !important;
}

.language-switcher {
    grid-area: lang;
    justify-self: end;
    margin-left: 3.5rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid #374151;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: #374151;
    color: white;
}

.lang-btn.active {
    background: #374151;
    color: white;
}

/* Show both language buttons */
.lang-btn {
    display: inline-block;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: url("photos/parabolic-rectangle.svg?v=2") no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}


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

.hero-image img {
    max-width: 400px;
    height: auto;
    color: blue;
}

.hero-image .image-placeholder {
    background: linear-gradient(135deg, #3b82f6 0%, #9d14cb 100%);
    border-radius: 50%;
    padding: 0;
    width: 510px;
    height: 510px;
    min-width: 240px;
    min-height: 240px;
    max-width: 600px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px rgba(60, 20, 100, 0.18);
    border: none;
    margin: 0 auto;
    overflow: hidden;
}
.hero-image .image-placeholder img {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.image-placeholder {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: #6b7280;
    border: 2px dashed #9ca3af;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.image-placeholder i {
    font-size: 4rem;
    color: #9ca3af;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

/* Values section header should be white */
.values .section-header h2 {
    color: #ffffff;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Values section description should be light gray */
.values .section-header p {
    color: #e5e7eb;
}

/* Process section header should be white */
.process-section .section-header h2 {
    color: #ffffff;
}

/* Process section description should be light gray */
.process-section .section-header p {
    color: #e5e7eb;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #6b7280;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #9d14cb 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #e5e7eb;
    font-weight: 500;
}

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

.about-image img {
    max-width: 400px;
    height: auto;
}

.about-image .image-placeholder {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: #6b7280;
    border: none;
    width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background-color: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.portfolio-image .image-placeholder {
    height: 100% !important;
    width: 100% !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: none !important;
    min-height: auto !important;
    display: block !important;
    text-align: left !important;
}

.portfolio-image .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.portfolio-image .image-placeholder p {
    display: none;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: #6b7280;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #6b7280;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b7280;
}

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

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
}

.link-primary {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.link-primary:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #f9fafb;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6b7280;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    .hero-container,
    .about-content,
    .contact-content,
    .services-grid,
    .portfolio-grid,
    .footer-content {
        gap: 2rem !important;
    }
    .section-header h2,
    .about-text h2,
    .hero-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.2rem !important;
        padding-bottom: 0.4rem !important;
    }
    .section-header p,
    .about-text p,
    .hero-subtitle {
        font-size: 0.98rem !important;
        margin-bottom: 1.1rem !important;
    }
    .form-group input,
    .form-group textarea {
        font-size: 1rem !important;
        padding: 14px 12px !important;
        margin-bottom: 1.2rem !important;
    }
    .btn,
    .btn-primary,
    .btn-secondary {
        font-size: 0.98rem !important;
        margin-top: 1.4rem;
    }
    .footer-section {
        margin-bottom: 2rem !important;
    }
    .footer-section ul li {
        margin-bottom: 0.7rem !important;
    }
    .footer-section p {
        margin-bottom: 1rem !important;
    }
    .language-switcher {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 0.5rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hamburger {
        width: 28px !important;
        height: 28px !important;
    }
    .hamburger .bar:nth-child(1) {
        width: 14px !important;
    }
    .hamburger .bar:nth-child(2) {
        width: 10px !important;
    }
    .hamburger .bar:nth-child(3) {
        width: 6px !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 2.5rem !important;
        padding: 0 10px !important;
    }

    .services-hero-content h1,
    .contact-hero-content h1,
    .about-hero-content h1{
        font-size: 2.2rem !important;
        color: black !important;
    }

    .services-hero-content p,
    .contact-hero-content p,
    .about-hero-content p{
        font-size: 0.98rem !important;
        padding: 1rem 1rem !important;
        color: rgb(26, 26, 26) !important;
    }

    .hero-image {
        max-width: 420px !important;
        max-height: 420px !important;
        width: 100%;
        height: auto;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #3b82f6 0%, #9d14cb 100%) !important;
    }

    .hero-image img {
        width: 70% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        object-fit: contain !important;
        display: block !important;
    }

    .hero-content {
        max-width: 350px !important;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    .about-text {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-text h2 {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .about-text p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        width: 100% !important;
        display: block !important;
    }
    .about-text h2 {
        font-size: 2rem !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .stat h3 {
        font-size: 2rem !important;
        word-break: keep-all !important;
        white-space: nowrap !important;
    }
    
    .story-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        max-width: 800px;
    }
    
    .story-text h2,
    .story-text p {
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        gap: 0.6rem !important;
        justify-content: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .hero {
        min-height: 85vh !important;
    }

    .navbar {
        position: fixed !important;
        top: 2rem !important;
        left: 1.5rem !important;
        right: 1.5rem !important;
        width: calc(100% - 3rem) !important;
        border-radius: 2.5rem !important;
        height: 68px !important;
        margin: 0 !important;
        z-index: 1003 !important;
    }
    .nav-container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 16px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        width: 32px !important;
        height: 32px !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        z-index: 1005 !important;
        padding: 4px !important;
        position: relative !important;
        cursor: pointer !important;
    }
    .hamburger .bar {
        height: 3px !important;
        background: #374151 !important;
        margin: 2px 0 !important;
        border-radius: 2px !important;
        transition: 0.3s !important;
        display: block !important;
        width: 100% !important;
    }
    .nav-menu {
        position: fixed !important;
        left: 0 !important;
        top: 56px !important;
        width: 100% !important;
        background: rgba(255,255,255,0.98) !important;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05) !important;
        display: none;
        flex-direction: column !important;
        text-align: center !important;
        padding: 2rem 0 1rem 0 !important;
        z-index: 1001 !important;
        gap: 1.7rem !important;
    }
    .nav-menu.active {
        display: flex !important;
    }
    .nav-cta {
        display: none !important;
    }
    .logo-placeholder {
        font-size: 1.1rem !important;
    }
    .hamburger {
        width: 28px !important;
        height: 28px !important;
    }
    .hamburger .bar:nth-child(1) {
        width: 48px !important;
    }
    .hamburger .bar:nth-child(2) {
        width: 32px !important;
    }
    .hamburger .bar:nth-child(3) {
        width: 17px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 5px !important;
    }
    .hero-title {
        font-size: 1.7rem !important;
        margin-bottom: 1.1rem !important;
        padding-bottom: 0.4rem !important;
    }
    .hero-subtitle {
        font-size: 0.92rem !important;
        margin-bottom: 0.8rem !important;
    }
    .btn,
    .btn-primary,
    .btn-secondary {
        font-size: 0.92rem !important;
        padding: 8px 10px !important;
    }
    .footer-section {
        margin-bottom: 2rem !important;
    }
    .footer-section ul li {
        margin-bottom: 0.7rem !important;
    }
    .footer-section p {
        margin-bottom: 1rem !important;
    }
    .hero-image {
        max-width: 300px !important;
        max-height: 300px !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #3b82f6 0%, #9d14cb 100%) !important;
    }

    .hero {
        min-height: 70vh !important;
    }

    .hamburger {
        width: 32px !important;
        height: 22px !important;
    }
    .hamburger .bar:nth-child(1) {
        width: 20px !important;
    }
    .hamburger .bar:nth-child(2) {
        width: 17px !important;
    }
    .hamburger .bar:nth-child(3) {
        width: 14px !important;
    }
    .logo-placeholder {
        font-size: 0.95rem !important;
    }
    .navbar {
        position: fixed !important;
        top: 1.2rem !important;
        left: 0.7rem !important;
        right: 0.7rem !important;
        width: calc(100% - 1.4rem) !important;
        border-radius: 1.5rem !important;
        height: 56px !important;
        margin: 0 !important;
        z-index: 1003 !important;
    }
}

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

.service-card,
.portfolio-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Additional Page Styles */

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.mission {
    padding: 80px 0;
    background-color: #ffffff;
}

.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    flex: 1 1 0;
}

.mission-image {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.mission-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.values {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #9d14cb 100%);
}



.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

.value-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-card p {
    color: #e5e7eb;
    line-height: 1.6;
}

.team {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.team-member {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image .image-placeholder {
    height: 100%;
    border-radius: 0;
    border: none;
    padding: 2rem;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    gap: 0.5rem;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #374151;
    color: white;
}

.story {
    padding: 80px 0;
    background-color: #f9fafb;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: left;
}

.story-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
}

.story-image .image-placeholder {
    background: #fff !important;
    border: none !important;
}

.stats-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6b7280;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #9d14cb 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.form-intro p {
    color: #6b7280;
    font-size: 1.1rem;
}

.contact-form-detailed {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #6b7280;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.office-location {
    padding: 80px 0;
    background-color: #ffffff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.location-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-item i {
    font-size: 1.25rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.location-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #6b7280;
    margin: 0;
}

.faq-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Services Page Styles */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-overview {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-detailed-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-detailed-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detailed-icon i {
    font-size: 2rem;
    color: #6b7280;
}

.service-detailed-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.service-detailed-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-cta {
    text-align: center;
}

.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #9d14cb 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-header{
    color: #ffffff;
}

.process-text {
    color: #e5e7eb;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.process-step:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.process-step:hover::before {
    left: 100%;
}

.process-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.process-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.process-content p {
    color: #e5e7eb;
    line-height: 1.6;
}

.pricing-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #374151;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #374151;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: #6b7280;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: #6b7280;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.pricing-cta {
    text-align: center;
}

.technologies-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.technology-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.technology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.technology-icon {
    font-size: 3rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.technology-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .mission-content,
    .story-content,
    .location-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
    background: #3b82f6;
    color: white;
}

.cookie-buttons .btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.cookie-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Responsive design for cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
}

.mission-image .image-placeholder {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: #fff !important;
}

.mission-image img {
    max-width: 400px;
    height: auto;
}

.mission-image > div {
    background: #fff !important;
    border: none !important;
}

.mission-image img {
    max-width: 330px;
    height: auto;
    display: block;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.nav-cta {
    margin-left: 2rem !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    display: inline-block !important;
    white-space: nowrap !important;
    height: auto !important;
    line-height: 1.5 !important;
    vertical-align: middle !important;
    align-self: center !important;
}

@media (max-width: 768px) {
    .navbar {
        border-radius: 3rem !important;
    }
    .nav-cta {
        display: none !important;
    }
    .nav-menu .nav-cta {
        display: block !important;
        margin: 1.5rem auto 0 auto !important;
        width: 90% !important;
        max-width: 300px !important;
        text-align: center !important;
        font-size: 1.1rem !important;
        padding: 14px 0 !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        border-radius: 2rem !important;
    }
    .nav-menu .nav-cta {
        font-size: 1rem !important;
        padding: 12px 0 !important;
    }
}

@media (min-width: 769px) {
    .navbar {
        border-radius: 2.5rem !important;
        margin: 1.5rem 2.5rem 0 2.5rem !important;
        width: calc(100% - 5rem) !important;
        border: 1.5px solid #e5e7eb !important;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
    }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .story-content {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    max-width: 800px !important;
    gap: 2rem !important;
  }
  .story-text h2,
  .story-text p {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .logo-placeholder img {
    max-height: 32px !important;
    height: 32px !important;
  }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 1rem;
}
.footer-logo .logo-placeholder {
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.footer-logo .logo-placeholder img {
    height: 90px !important;
    max-width: 180px !important;
    width: auto;
    display: block;
}

/* Offer1 Page Custom Styles */
.offer1-section {
  padding: 80px 0 40px 0;
  background: #f9fafb;
}
.offer1-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.offer1-offer, .offer1-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 2.5rem 2rem;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.offer1-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.offer1-header p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.offer1-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.offer1-features li {
  color: #374151;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2em;
  position: relative;
}
.offer1-features li:before {
  content: '\2713';
  color: #3b82f6;
  position: absolute;
  left: 0;
  font-size: 1.1em;
}
.offer1-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-top: 1.5rem;
}
.offer1-currency {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 0.2em;
}
.offer1-amount {
  font-size: 2.5rem;
  font-weight: 700;
}
.offer1-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 2.5rem 2rem;
  border: 1px solid #e5e7eb;
}
.offer1-header > *:not(:last-child) {
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .offer1-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .offer1-offer, .offer1-form {
    padding: 2rem 1rem;
  }
}

/* Custom: Position Botpress Webchat bottom left */
#webchat, .bp-widget, .bpw-floating-button, .bpw-floating-container, .bpw-floating {
  right: auto !important;
  left: 20px !important;
  bottom: 20px !important;
  top: auto !important;
}

/* Hide default bottom right button if needed */
.bpw-floating-button[style*="right"] {
  right: auto !important;
  left: 20px !important;
}
