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

:root {
    --green-primary: #0bb840;
    --green-hover: #0CB840;
    --dark-bg: #1e1e1e;
    --dark-footer: #0a4a1d;
    --text-dark: #1e1e1e;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --border-color: #d9d9d9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Caveat', Helvetica, cursive;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 0.375rem 0.75rem;
    transition: all 0.5s ease-in;
}

.navbar.dark {
    background: rgba(30, 30, 30, 0.8);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-btn img {
    width: 100px;
    height: auto;
    object-fit: contain;
    transition: opacity 0.5s;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.nav-links button {
    font-size: 0.75rem;
    color: var(--text-dark);
    white-space: nowrap;
    transition: all 0.5s ease-in;
}

.navbar.dark .nav-links button {
    color: var(--text-white);
}

.nav-links button:hover {
    opacity: 0.7;
}

.btn-primary {
    background: var(--green-primary);
    color: var(--text-white);
    padding: 0.5rem 1.25rem;
    border-radius: 60px;
    font-size: 0.75rem;
    white-space: nowrap;
    transition: background 0.3s ease-in;
}

.btn-primary:hover {
    background: rgba(11, 184, 64, 0.9);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(116,116,116,0.34) 0%, rgba(65,65,65,0.46) 59%, rgba(0,0,0,0.62) 100%), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoomIn 0.6s ease-in forwards;
}

.hero-section.active .hero-bg {
    animation: heroZoomOut 0.6s ease-in forwards;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    animation: heroContentZoomIn 0.6s ease-in forwards;
}

.hero-section.active .hero-content {
    animation: heroContentZoomOut 0.6s ease-in forwards;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.hero-section h1 {
    width: 100%;
    font-weight: normal;
    color: var(--text-white);
    font-size: 28px;
    text-align: center;
    line-height: normal;
}

.hero-section p {
    width: 100%;
    font-size: 11px;
    color: var(--text-white);
    text-align: center;
    line-height: 17px;
}

.hero-button {
    background: white;
    color: #0bb840;
    border: 2px dashed #0bb840;
    padding: 0.5rem 0;
    width: 180px;
    font-size: 1.125rem;
    font-family: 'Ysabeau SC', Helvetica, sans-serif;
    font-weight: normal;
    transition: all 0.3s ease-in;
}

.hero-button:hover {
    background: white;
    transform: scale(1.02);
}

/* Keyframes for Hero Animation */
@keyframes heroZoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes heroZoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@keyframes heroContentZoomIn {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

@keyframes heroContentZoomOut {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/* Services Divider */
.services-divider {
    background: var(--dark-bg);
    width: 100%;
    padding: 1rem 0;
}

.services-divider-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.services-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-header h2 {
    font-size: 1.125rem;
    font-weight: normal;
    color: var(--text-white);
    text-align: right;
    line-height: 2rem;
    white-space: nowrap;
}

.services-header img {
    width: 80px;
    flex-shrink: 0;
}

.services-quote {
    position: relative;
    width: 100%;
    min-height: 120px;
}

.quote-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 1rem;
    width: 100%;
    
}

.quote-text {
    font-size: 0.875rem;
    color: var(--text-white);
    line-height: 20px;
    margin-bottom: 0.5rem;
    left: -0.5rem;
}

.quote-author {
    font-family: 'Caveat', Helvetica, cursive;
    font-size: 1.125rem;
    color: var(--text-white);
    text-align: right;
    line-height: 2rem;
    margin-top: -0.5rem;
}

.quote-border {
    position:absolute;
    top: 0;
    left: -1.5rem;
    right: -1.5rem;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--green-primary);
}

/* Products Section */
.products-section {
    width: 100%;
    position: relative;
    padding: 4.875rem 1rem;
    background-color: rgb(236, 236, 236);
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1018px;
    gap: 5.375rem;
}

.product-card {
    width: 100%;
    border-radius: 26px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-in, transform 0.8s ease-in;
}

.product-card.animate-right {
    transform: translateX(100px);
}

.product-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.bg-green {
    background: var(--green-primary);
}

.bg-dark {
    background: var(--dark-bg);
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.75rem;
}

.product-content.reverse {
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.4375rem;
    flex: 1;
}

.product-info h3 {
    font-family: 'Figma Hand-Regular', Helvetica, cursive;
    font-weight: normal;
    color: var(--text-white);
    font-size: 34.5px;
    line-height: normal;
}

.product-info p {
    font-weight: normal;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13.8px;
    text-align: justify;
    line-height: 25.8px;
}

/* About Section */
.about-section {
    position: relative;
    width: 100%;
    padding: 5rem 1rem;
    background: linear-gradient(0deg, rgba(50,52,141,0.79) 0%, rgba(50,52,141,0.79) 100%), url('assets/about-us.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-container {
    position: relative;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

.about-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-header-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 287px;
    height: 100px;
    background: url('assets/frame-1.png');
    background-size: cover;
    background-position: center;
}

.about-header-text {
    font-weight: 300;
    color: var(--text-white);
    font-size: 15px;
    letter-spacing: 1.5px;
    line-height: 28px;
    white-space: nowrap;
    margin-top: -1rem;
}

.about-card {
    display: flex;
    justify-content: center;
}

.about-card p {
    width: 100%;
    max-width: 926px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25.84px;
    padding: 2.75rem;
    font-weight: normal;
    color: var(--text-white);
    font-size: 20.7px;
    text-align: center;
    line-height: 25.8px;
}

/* Contact Section */
.contact-section {
    width: 100%;
    background: var(--dark-footer);
    padding: 2.5rem 1rem;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.contact-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-image img {
    height: 150px;
    width: 100%;
    max-width: 280px;
    object-fit: contain;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 430px;
}

.contact-form {
    background: var(--text-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    min-width: 240px;
    padding: 0.75rem 1rem;
    background: var(--text-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper textarea {
    min-height: 80px;
    resize: none;
    width: 100%;
}

.drag-icon {
    position: absolute;
    right: 7px;
    bottom: 8px;
    width: 7px;
    height: 7px;
    pointer-events: none;
}

.btn-submit {
    width: 100%;
    height: auto;
    background: #2c2c2c;
    color: #f5f5f5;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: background 0.3s ease-in;
}

.btn-submit:hover {
    background: #1a1a1a;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-main {
    position: relative;
    width: 100%;
    min-height: 759px;
    background: var(--dark-bg);
    padding: 2.5rem 0;
}

.footer-logo-card {
    width: 100%;
    max-width: 607px;
    height: 250px;
    background: #d9d9d9;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    padding: 1rem;
}

.footer-logo-card img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

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

.contact-icon {
    flex-shrink: 0;
}

.location-icon {
    width: 35px;
    height: 35px;
}

.phone-icon {
    width: 35px;
    height: 28px;
}

.contact-text {
    max-width: 296px;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-weight: normal;
    color: var(--text-white);
    font-size: 0.875rem;
    line-height: 20px;
}

.social-media {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--text-white);
}

.social-media-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-header {
    font-family: 'Roboto', Helvetica, sans-serif;
    font-weight: normal;
    color: var(--text-white);
    font-size: 1rem;
    text-align: right;
    line-height: 2rem;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icon {
    transition: transform 0.3s ease-in;
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 40px;
    height: 40px;
}

.footer-links {
    padding: 0 0.5rem;
}

.footer-links-header {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 30px;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

.footer-separator {
    width: 300px;
    height: 2px;
    background: var(--text-white);
    margin-bottom: 0.5rem;
}

.footer-links-list {
    padding-left: 20px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-link {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    transition: color 0.3s ease-in;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
}

.footer-link.clickable {
    cursor: pointer;
}

.footer-link img {
    width: 20px;
    height: 20px;
}

.footer-link span {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-white);
    font-size: 18px;
    transition: color 0.3s ease-in;
}

.footer-link.clickable:hover span {
    color: var(--green-hover);
}

.footer-copyright {
    position: relative;
    width: 100%;
    height: 58px;
    background: var(--dark-footer);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright div,
.footer-copyright {
    font-weight: normal;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    white-space: nowrap;
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--text-white);
    margin: auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideIn 0.3s;
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-white);
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
}

.modal-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.btn-close {
    background: var(--green-primary);
    color: var(--text-white);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease-in;
}

.btn-close:hover {
    background: var(--green-hover);
}
.quote-border{
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design - Tablet and Desktop */
@media (min-width: 768px) {
    /* Navigation */
    .navbar {
        top: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 983px;
        padding: 0.375rem 2rem;
    }

    .logo-btn img {
        width: 138px;
    }

    .nav-links {
        display: inline-flex;
        gap: 2.5rem;
    }

    .nav-links button {
        font-size: 0.875rem;
    }

    .nav-right {
        gap: 3.8125rem;
    }

    .btn-primary {
        width: 159px;
        height: 35px;
        font-size: 0.875rem;
    }

    /* Hero */
    .hero-section {
        height: 750px;
        padding-top: 0;
    }

    .hero-content {
        max-width: 376px;
        gap: 1.25rem;
    }

    .hero-section h1 {
        font-size: 40px;
    }

    .hero-section p {
        font-size: 24px;
        line-height: normal;
    }

    .hero-button {
        width: 250px;
        font-size: 1.5rem;
    }

    /* Services Divider */
    .services-divider {
        padding: 1.5rem 0;
    }

    .services-divider .container {
        padding: 0 4rem;
    }

    .services-divider-content {
        flex-direction: row;
        gap: 18.75rem;
    }

    .services-header {
        gap: 3rem;
    }

    .services-header h2 {
        font-size: 1.25rem;
        line-height: 2.5rem;
    }

    .services-header img {
        width: auto;
    }

    .services-quote {
        width: 521px;
        height: 120px;
    }
    .quote-border{
        display: flex;
    }
   

    .quote-content {
        position: absolute;
        top: 4px;
        left: 18px;
        width: 484px;
    }

    .quote-text {
        font-size: 15px;
        line-height: 22.5px;
    }

    .quote-author {
        font-size: 1.25rem;
        line-height: 2.5rem;
    }

    .quote-border {
        width: 521px;
        height: 120px;
    }

    /* Products */
    .products-section {
        padding: 4.875rem 13.1875rem;
    }

    .product-content {
        flex-direction: row;
        padding: 1.9375rem;
        gap: 5.4375rem;
    }

    .product-content.reverse {
        flex-direction: row-reverse;
        padding-left: 2.75rem;
    }

    .product-image {
        width: 242px;
        height: 360px;
    }

    /* About */
    .about-section {
        padding: 4.9375rem 11.1875rem;
    }

    .about-header {
        margin-bottom: 3.125rem;
    }

    .about-card p {
        padding: 4.84375rem 2.745rem;
    }

    /* Contact */
    .contact-section {
        padding: 5rem 1.5rem;
    }

    .contact-container {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-image img {
        height: 205px;
        max-width: 362px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-logo-card {
        position: absolute;
        top: 139px;
        left: 95px;
        width: 607px;
        height: 342px;
        margin: 0;
    }

    .footer-logo-card img {
        width: 442px;
        height: 342px;
    }

    .footer-contact {
        position: absolute;
        top: 537px;
        left: 100px;
        flex-direction: row;
        gap: 7.0625rem;
        padding: 0;
        margin: 0;
    }

    .contact-item {
        gap: 2.25rem;
    }

    .location-icon {
        width: 50px;
        height: 50px;
    }

    .phone-icon {
        width: 49.77px;
        height: 40px;
    }

    .contact-text {
        font-size: 1rem;
        line-height: 25.6px;
    }

    .social-media {
        width: 398px;
        padding: 0.9375rem 1.0625rem 0.9375rem 1.75rem;
    }

    .social-media-inner {
        gap: 2.1875rem;
    }

    .social-header {
        font-size: 1.25rem;
        line-height: 2.5rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icon img {
        width: 48px;
        height: 48px;
    }

    .footer-links {
        position: absolute;
        top: 202px;
        left: 944px;
        padding: 0;
    }

    .footer-separator {
        margin-bottom: 0;
    }

    .footer-links-list {
        margin-top: 52px;
        gap: 2.25rem;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .contact-container {
        gap: 3rem;
    }
}
