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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f6f2;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: all 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hide hamburger when menu is active to avoid double close buttons */
.hamburger.active {
    opacity: 0;
    pointer-events: none;
}

.navbar.scrolled .hamburger span {
    background: #2d5016;
}

.nav-contact {
    display: flex;
    align-items: center;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta .contact-text {
    display: inline;
}

.nav-cta i {
    display: none;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

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

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #2d5016;
    transition: all 0.3s ease;
}

.menu-close:hover {
    color: #4d7c0f;
    transform: scale(1.1);
}

.menu-links {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #2d5016;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4d7c0f;
    padding-left: 1rem;
}

/* Logo Image Styles */
.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image.black-logo {
    height: 140px;
}

.logo-image:hover {
    opacity: 0.8;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Mobile responsive logo adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
        transform: scale(0.9);
        transform-origin: center center;
    }
    
    .logo-image.black-logo {
        height: 45px;
        transform: scale(0.9);
        transform-origin: center center;
    }
    
    .footer-logo-image {
        height: 70px;
    }
    
    /* Mobile hero video fix */
    .hero-video {
        min-height: 100vh;
        height: 100vh;
    }
    
    .video-placeholder {
        height: 100vh;
    }
    
    .hero-video-element {
        height: 100vh;
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
        transform: scale(0.8);
        transform-origin: center center;
    }
    
    .logo-image.black-logo {
        height: 40px;
        transform: scale(0.8);
        transform-origin: center center;
    }

    .footer-logo-image {
        height: 60px;
    }
}

/* Hero Video Section */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.video-container {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100vh;
    top: 0;
    overflow: hidden;
}

.hero-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    margin-top: 100px;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: 1.3rem;
    font-weight: 300;
    color: #d1fae5;
    letter-spacing: 0.05em;
    padding-bottom: 0.75rem;
    position: relative;
}

.title-sub::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #d1fae5;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.play-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, #4d7c0f, #2d5016);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(77, 124, 15, 0.4);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(77, 124, 15, 0.5);
}

/* About Us CTA specific styling - clean modern look */
.about-cta {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: none;
    box-shadow: none;
    margin-top: 1rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}

.about-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: #f0ede8;
    position: relative;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    height: 2px;
    background: #d1d5db;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.vision-title {
    position: sticky;
    top: 2rem;
}

.vision-title .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.vision-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

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

.vision-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vision-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #4d7c0f;
}

.vision-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.vision-item h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #4d7c0f, #2d5016);
    border-radius: 2px;
    margin-right: 0.75rem;
}

.vision-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-title {
        position: static;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .vision-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vision-item {
        padding: 1.5rem;
    }
    
    .vision-title .section-title {
        font-size: 1.8rem;
    }
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: #f8f6f2;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    height: 2px;
    background: #d1d5db;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card.featured {
    border-color: #4d7c0f;
    box-shadow: 0 20px 40px rgba(77, 124, 15, 0.15);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #84cc16, #4d7c0f);
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 2rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.product-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    background: #f0fdf4;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
}

.product-cta {
    background: linear-gradient(135deg, #4d7c0f, #2d5016);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 124, 15, 0.3);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #f0ede8;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    height: 2px;
    background: #d1d5db;
}

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

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    align-self: start;
}

.about-description {
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-description-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.value-item i {
    color: #4d7c0f;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.value-item > div {
    flex: 1;
    min-width: 0;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.value-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-visual {
    position: relative;
}

.team-photo {
    height: 400px;
    background: linear-gradient(135deg, #84cc16, #4d7c0f);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.company-stats {
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
}

.stat .label {
    font-size: 0.9rem;
    color: #64748b;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a0f, #2d5016);
    color: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    height: 2px;
    background: #4b5563;
}

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

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #d1fae5;
}

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

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

.contact-item i {
    color: #84cc16;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #d1fae5;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #d1fae5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 1.1rem;
    color: #d1fae5;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section Split Layout */
.contact-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-left {
    padding-right: 2rem;
}

.contact-left .contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-left .contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-options {
    margin-top: 2.5rem;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.contact-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    backdrop-filter: blur(10px);
}

.contact-icon i {
    font-size: 1.2rem;
    color: #d1fae5;
}

.contact-option h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-option p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-right {
    padding-left: 1rem;
}

.contact-form-module {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
}



/* Form Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #84cc16;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

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

.form-message textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    width: 100%;
    min-height: 120px;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-message textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-message textarea:focus {
    outline: none;
    border-color: #84cc16;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.form-submit {
    background: linear-gradient(135deg, #84cc16, #4d7c0f);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 204, 22, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #84cc16;
    background: rgba(255, 255, 255, 0.15);
}

.form-submit {
    background: linear-gradient(135deg, #84cc16, #4d7c0f);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(132, 204, 22, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #84cc16;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4d7c0f;
    color: white;
    transform: translateY(-2px);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1.1rem;
    border-bottom: 2px solid #84cc16;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    display: block;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        width: 100%;
        left: -100%;
    }
    
    .menu-header {
        padding: 1.5rem;
    }
    
    .menu-logo {
        height: 70px;
    }
    
    .nav-logo .logo-image {
        height: 80px;
    }
    
    /* Mobile Navigation Layout */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 0 1rem;
        height: 60px;
    }
    
    .hamburger {
        order: 1;
        z-index: 1001;
    }
    
    .nav-logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-contact {
        order: 3;
        z-index: 999;
        display: flex; /* Show contact button on mobile */
    }
    
    /* Mobile contact icon styling */
    .nav-cta {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 0.75rem;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-cta .contact-text {
        display: none;
    }
    
    .nav-cta i {
        display: block;
        font-size: 1.1rem;
    }
    
    /* Hero section mobile optimizations */
    .hero-video {
        min-height: 100vh;
        height: 100vh;
    }
    
    .video-placeholder {
        height: 100vh;
    }
    
    .hero-video-element {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .title-main {
        font-size: 2rem;
        line-height: 1.1;
    }

    .title-sub {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .video-content {
        margin-top: 60px;
        padding: 0 1rem;
        max-width: 100%;
    }

    .logo-image {
        height: 80px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    /* Section spacing adjustments */
    .about-section,
    .products-section,
    .contact-section {
        padding: 3rem 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .founder-credentials {
        justify-content: center;
    }
    
    .founder-image {
        height: 240px;
    }
    
    .founder-info {
        padding: 1.5rem;
    }
    
    .founder-contact {
        gap: 0.75rem;
    }
    
    .founder-icon-btn {
        width: 42px;
        height: 42px;
    }
    
    .founder-icon-btn i {
        font-size: 1.1rem;
    }
    
    .benefits-list {
        padding-left: 0;
    }
    
    .partnership-benefits {
        text-align: left;
    }
    
    /* Company stats mobile layout */
    .company-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .team-photo,
    .partnership-visual {
        height: 250px;
    }
    
    /* Contact form improvements */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    /* Contact split layout mobile */
    .contact-content-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-left {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-left .contact-title {
        font-size: 2rem;
    }
    
    .contact-options {
        margin-top: 2rem;
    }
    
    .contact-option {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-right {
        padding-left: 0;
    }
    
    .contact-form-module {
        padding: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .form-submit {
        min-width: auto;
        width: 100%;
    }
    
    .contact-info-horizontal {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .nav-container {
        padding: 0 0.75rem;
        height: 55px;
    }
    
    .logo-image {
        content: url('swagmoblie.svg');
        transform: scale(0.45);
        transform-origin: center center;
        height: 60px;
    }
    
    .logo-image.black-logo {
        content: url('swagmoblie.svg');
        transform: scale(0.45);
        transform-origin: center center;
        height: 60px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    /* Mobile contact icon for small screens */
    .nav-cta {
        width: 40px;
        height: 40px;
        padding: 0.6rem;
    }
    
    .nav-cta i {
        font-size: 1rem;
    }
    
    /* Smaller mobile optimizations */
    .hero-video {
        min-height: 100vh;
        height: 100vh;
    }
    
    .video-placeholder {
        height: 100vh;
    }
    
    .hero-video-element {
        height: 100vh;
        min-height: 100vh;
    }
    
    .video-content {
        margin-top: 40px;
        padding: 0 0.75rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
    }
    
    .about-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Compact sections */
    .about-section,
    .products-section,
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .founders-grid {
        max-width: 340px;
        gap: 1.25rem;
    }
    
    .founder-image {
        height: 200px;
    }
    
    .founder-info {
        padding: 1.25rem;
    }
    
    .founder-name {
        font-size: 1.3rem;
    }
    
    .founder-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-form h3 {
        font-size: 1.2rem;
    }
    
    .company-stats {
        padding: 1.25rem;
    }
    
    .stat .number {
        font-size: 1.75rem;
    }
    
    /* Benefits list for smaller mobile */
    .benefits-list li {
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .benefit-content {
        gap: 0.3rem;
    }
    
    .benefits-list strong {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .benefits-list span {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .partnership-benefits h3 {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    /* Small mobile contact form */
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-form-module {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-message textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .contact-info-horizontal .contact-item {
        padding: 1.25rem;
    }
    
    .contact-info-horizontal .contact-item h4 {
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-cta {
    background: rgba(45, 80, 22, 0.1);
    color: #2d5016;
    border-color: rgba(45, 80, 22, 0.3);
}

.navbar.scrolled .nav-cta:hover {
    background: rgba(45, 80, 22, 0.2);
    border-color: rgba(45, 80, 22, 0.5);
}

/* Founders Section Styles */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.founder-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.founder-card.featured {
    border-color: #4d7c0f;
    box-shadow: 0 20px 40px rgba(77, 124, 15, 0.15);
}

.founder-image {
    height: 280px;
    background: linear-gradient(135deg, #84cc16, #4d7c0f);
    position: relative;
    overflow: hidden;
}

/* Cody Burger's specific photo */
.founder-image.cody-photo {
    background: url('CodyFinals-39 copy.jpg') center center;
    background-size: cover;
    background-position: center 45%;
}

/* Dylan Lee's specific photo */
.founder-image.dylan-photo {
    background: url('FullSizeRender-3.jpg') center center;
    background-size: cover;
    background-position: center;
}

.founder-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2d5016;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.founder-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #4d7c0f;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.founder-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.founder-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

/* Icon button styles for founder cards */
.founder-icon-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.founder-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.founder-icon-btn i {
    font-size: 1.2rem;
}

/* Email icon styling */
.email-icon {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
}

.email-icon:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

/* LinkedIn icon styling */
.linkedin-icon {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
}

.linkedin-icon:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

/* Legacy contact link styles - keep for backwards compatibility */
.contact-link {
    color: #4d7c0f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: #2d5016;
    border-bottom-color: #4d7c0f;
}

/* Partnership Benefits Styles */
.partnership-benefits {
    margin: 2rem 0;
}

.partnership-benefits h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1fae5;
    padding: 0;
    background: none;
    border: none;
    transition: none;
}

.benefits-list li:hover {
    background: none;
    border: none;
    transform: none;
}

.benefits-list i {
    color: #84cc16;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefits-list strong {
    color: #e2e8f0;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    margin-bottom: 0.25rem;
}

.benefits-list span {
    color: #d1fae5;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile responsiveness for benefits */
@media (max-width: 768px) {
    .benefits-list {
        gap: 1rem;
    }
    
    .benefits-list li {
        gap: 0.75rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .benefits-list li:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-1px);
    }
    
    .benefits-list i {
        font-size: 1.1rem;
        margin-top: 1px;
    }
    
    .benefit-content {
        gap: 0.4rem;
    }
    
    .benefits-list strong {
        font-size: 1rem;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 0.4rem;
    }
    
    .benefits-list span {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .partnership-benefits h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

/* Partnership Visual */
.partnership-visual {
    height: 400px;
    background: linear-gradient(135deg, #2d5016, #4d7c0f, #84cc16);
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
}

.partnership-visual::after {
    content: '🤝';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.7;
}

/* Form Enhancements */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #84cc16;
    border-color: #84cc16;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Section Separators */
.section-separator {
    height: 2px;
    background: #2c2c2c;
    margin: 0 auto;
    border: none;
    max-width: 1200px;
    width: calc(100% - 4rem);
}

.section-separator.dark {
    background: #4b5563;
}

/* Benefits Grid Styling - Enhanced Visual Appeal */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(132, 204, 22, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(132, 204, 22, 0.2);
}

.benefit-icon {
    background: rgba(132, 204, 22, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.benefit-icon i {
    color: #84cc16;
    font-size: 1.2rem;
}

.benefit-content {
    flex: 1;
    min-width: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-content p {
    color: #d1fae5;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile responsiveness for benefits grid */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
    }
    
    .benefit-icon {
        width: 44px;
        height: 44px;
        padding: 0.6rem;
    }
    
    .benefit-icon i {
        font-size: 1.1rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .benefit-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }
    
    .benefit-icon i {
        font-size: 1rem;
    }
}
