/* Color Palette & Variables */
:root {
    --black: #2B2B2B;
    --white: #FFFFFF;
    --shadow-light: 0 4px 15px rgba(43, 43, 43, 0.08);
    --shadow-medium: 0 8px 30px rgba(43, 43, 43, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins';
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Luxury Background Effects */
.luxury-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--white);
}

.particle {
    display: none;
}

.shimmer-line {
    display: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(43, 43, 43, 0.1);
    transition: all 0.4s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--black);
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--black);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: var(--black);
}

.nav-link.active::before {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--black);
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid rgba(43, 43, 43, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.15);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: rgba(43, 43, 43, 0.05);
    color: var(--black);
    padding-left: 28px;
}

.cta-btn {
    padding: 12px 30px;
    background: var(--black);
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 60px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-main-title {
    font-family: 'Poppins';
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--black);
}

.hero-description {
    font-family: 'Poppins';
    font-size: 16px;
    color: var(--black);
    line-height: 1.8;
    font-weight: 400;
    max-width: 800px;
    margin-bottom: 60px;
}

/* Product Cards */
.product-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

.product-card {
    background: var(--white);
    border: 1px solid transparent;
    border-right: 0px solid var(--black);
    border-bottom: 0px solid var(--black);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 5px 5px 0px 0px var(--black);
}

.product-card:hover {
    box-shadow: 5px 5px 0px 0px var(--black);
}

.product-image-wrapper {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.product-image-wrapper.orange-bg {
    background: linear-gradient(135deg, #FF9500 0%, #FFB84D 100%);
    padding: 20px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title {
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-description {
    font-family: 'Poppins';
    font-size: 14px;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-btn {
    font-family: 'Poppins';
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}

.primary-btn {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(43, 43, 43, 0.2);
}

.primary-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 43, 43, 0.3);
}

.product-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.secondary-btn {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}

.secondary-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }
    
    .hero-main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .product-cards {
        gap: 30px;
        padding: 0 16px;
        max-width: 100%;
    }
    
    .product-card {
        padding: 30px 20px;
        width: 100%;
    }
    
    .product-image-wrapper {
        height: 220px;
        margin-bottom: 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .product-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .product-btn {
        width: 100%;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 40px 60px;
    position: relative;
}

.about-section .container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.about-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.about-description {
    font-family: 'Poppins';
    font-size: 16px;
    color: var(--black);
    line-height: 1.8;
    font-weight: 400;
    max-width: 700px;
}

@media (max-width: 768px) {
    .about-content {
        max-width: 100%;
    }
    
    .about-illustration {
        max-width: 350px;
    }
    
    .about-image {
        margin: 40px 0;
    }
    
    .about-description {
        font-size: 14px;
    }
}

/* WeClick Product Details Page */
.weclick-details-section {
    min-height: 100vh;
    padding: 0;
    background: var(--white);
}

.weclick-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 0px;
}

/* Hero & Stats Section */
.weclick-hero {
    text-align: center;
    padding: 40px 0 60px;
}

.weclick-main-title {
    font-family: 'Poppins';
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.weclick-subtitle {
    font-family: 'Poppins';
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.weclick-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.weclick-btn {
    font-family: 'Poppins';
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.app-store-btn {
    background: var(--black);
    color: var(--white);
}

.app-store-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-store-btn {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}

.play-store-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Stats Cards */
.weclick-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 200px;
}

.stat-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Poppins';
    font-size: 56px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin-bottom: 15px;
}

.star-rating {
    margin-bottom: 10px;
}

.star {
    font-size: 24px;
    color: #ddd;
    margin: 0 2px;
}

.star.filled {
    color: #FFD700;
}

.star.half-filled {
    position: relative;
    color: #ddd;
}

.star.half-filled::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #FFD700;
}

.stat-label {
    font-family: 'Poppins';
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Visual Showcase Section */
.weclick-showcase {
    text-align: center;
    padding: 60px 20px;
}

.showcase-image-container {
    max-width: 768px;
    margin: 0 auto;
    width: 100%;
}

.showcase-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Features Grid Section */
.weclick-features {
    width: 100%;
    /* FIX LEFT SHIFT: Use Flexbox to force centering */
    display: flex;
    flex-direction: column;
    align-items: center; 
    
    /* FIX GAP: Remove outer spacing */
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.features-title {
    font-family: 'Poppins';
    font-size: 40px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 50px;
    line-height: 1.4;
}

.highlight-text {
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #FF9500;
    border-radius: 2px;
}

.features-image-container {
    width: 100%;
    /* FIX LEFT SHIFT: Ensure the inner container centers the image */
    display: flex;
    justify-content: center;
    
    /* FIX GAP: Remove invisible text space below image */
    line-height: 0 !important; 
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.features-image {
    /* FIX GAP: display:block removes inline whitespace */
    display: block; 
    max-width: 100%;
    height: auto;
}

/* --- SECTION 2: THE ORANGE BACKGROUND (Asset 3) --- */

.weclick-how-it-works {
    background-color: #F8A633;
    width: 100%;
    
    /* FIX GAP: Remove top spacing so it touches the image above */
    margin-top: 0 !important; 
    padding-top: 0 !important;
    
    /* Center content inside the orange box */
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.asset3size {
    max-width: 768px;
    margin: 0 auto;
    width: 100%;
}

/* Additional Control Section - Orange Background Full Width */
.weclick-control-wrapper {
    background-color: #F8A633;
    width: 100%;
    margin: 0;
    padding: 60px 0 0 0;
}

.control-image-container {
    max-width: 768px;
    margin: 0 auto;
    width: 100%;
    margin-top: 40px;
}

.control-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* Responsive Design for WeClick Page */
@media (max-width: 768px) {
    .weclick-container {
        padding: 80px 20px 0px;
    }
    
    .weclick-main-title {
        font-size: 32px;
    }
    
    .weclick-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .weclick-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .weclick-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .weclick-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 44px;
    }
    
    .features-title {
        font-size: 28px;
        padding: 0 20px;
    }
    
    .showcase-image-container {
        max-width: 100%;
    }
    
    .features-image-container {
        max-width: 100%;
    }
    
    .control-image-container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (min-width: 769px) {
    .showcase-image-container {
        max-width: 768px;
    }
    
    .features-image-container {
        max-width: 768px;
    }
    
    .control-image-container {
        max-width: 1000px;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .about-content {
        max-width: 100%;
    }
    
    .about-illustration {
        max-width: 350px;
    }
    
    .about-image {
        margin: 40px 0;
    }
    
    .about-description {
        font-size: 14px;
    }
}

.btn-luxury {
    padding: 16px 40px;
    background: var(--black);
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
    text-transform: uppercase;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-luxury {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.btn-outline-luxury:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: circleExpand 15s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: 5%;
    animation-delay: 5s;
}

.circle-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes circleExpand {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* Team Section */
.team-section {
    padding: 120px 40px;
    background: #FFFFFF;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: transparent;
    border: 1px solid var(--black);
    border-radius: 50px;
    color: var(--black);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Poppins';
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
}

.section-description {
    font-size: 16px;
    color: var(--black);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.7;
}

/* Founder Section */
.founder-section {
    margin-bottom: 100px;
}

.founder-card {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    background: transparent;
    border: 1px solid rgba(43, 43, 43, 0.1);
    border-radius: 20px;
    padding: 60px;
    backdrop-filter: blur(10px);
    animation: founderReveal 1s ease;
}

@keyframes founderReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.founder-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    gap: 0;
    transition: all 0.4s ease;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.main-founder-image {
    display: block;
}

.secondary-founder-image {
    display: none;
    width: 0;
    opacity: 0;
}

.founder-image-container:hover .image-frame {
    gap: 10px;
}

.founder-image-container:hover .main-founder-image {
    width: calc(50% - 5px);
    border-radius: 8px;
}

.founder-image-container:hover .secondary-founder-image {
    display: block;
    width: calc(50% - 5px);
    opacity: 1;
    border-radius: 8px;
}

.golden-border {
    position: absolute;
    background: var(--black);
    box-shadow: 0 0 20px rgba(43, 43, 43, 0.3);
}

.border-tl {
    top: -5px;
    left: -5px;
    width: 80px;
    height: 3px;
}

.border-tr {
    top: -5px;
    right: -5px;
    width: 3px;
    height: 80px;
}

.border-bl {
    bottom: -5px;
    left: -5px;
    width: 3px;
    height: 80px;
}

.border-br {
    bottom: -5px;
    right: -5px;
    width: 80px;
    height: 3px;
}

.founder-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-name {
    font-family: 'Poppins';
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.founder-title {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.founder-divider {
    width: 60px;
    height: 2px;
    background: var(--black);
    margin-bottom: 25px;
}

.founder-description {
    font-size: 15px;
    line-height: 1.9;
    color: var(--black);
    opacity: 0.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px 0;
    align-items: start;
}

@media (min-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-member {
    position: relative;
    background: var(--white);
    border: 2px solid rgba(43, 43, 43, 0.1);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.team-member.expanded {
    border: 2px solid var(--black);
    box-shadow: var(--shadow-medium);
}

.member-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    gap: 0;
    transition: all 0.4s ease;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    align-items: center;
    justify-content: center;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-image.loaded {
    opacity: 1;
}

.main-image {
    display: block;
}

.secondary-image {
    display: none;
    width: 0;
    opacity: 0;
}

.team-member.expanded .member-image-wrapper {
    gap: 10px;
    padding: 0;
}

.team-member.expanded .main-image {
    width: calc(50% - 5px);
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.team-member.expanded .secondary-image {
    display: block;
    width: calc(50% - 5px);
    height: 100%;
    opacity: 1;
    border-radius: 8px;
    object-fit: cover;
}

/* Bhavyansh's images - show top portion to display face */
.bhavyansh-image {
    object-position: top center;
}

.image-overlay {
    display: none;
}

.member-info {
    padding: 25px;
    background: var(--white);
    transition: all 0.4s ease;
}

.member-name {
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.member-role {
    font-size: 12px;
    color: var(--black);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.member-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--black);
    opacity: 0.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease;
    margin-top: 0;
}

.team-member.expanded .member-description {
    max-height: 500px;
    margin-top: 15px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 479px) {
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .member-image-wrapper {
        height: 300px;
    }
    
    .member-info {
        padding: 20px;
    }
    
    .member-name {
        font-size: 22px;
    }
    
    .member-role {
        font-size: 11px;
    }
    
    .member-description {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .member-image-wrapper {
        height: 280px;
    }
    
    .member-info {
        padding: 20px;
    }
    
    .member-name {
        font-size: 20px;
    }
    
    .member-description {
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .member-image-wrapper {
        height: 350px;
    }
    
    .member-name {
        font-size: 22px;
    }
    
    .member-info {
        padding: 20px;
    }
    
    .team-member.expanded .member-description {
        max-height: 500px;
        opacity: 0.7;
        margin-top: 10px;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--velvet) 0%, var(--velvet) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-tag {
    display: inline-block;
    padding: 6px 20px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletter-title {
    font-family: 'Poppins';
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.newsletter-description {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.newsletter-form {
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-family: 'Poppins';
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 18px 40px;
    background: var(--white);
    border: none;
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
    text-transform: uppercase;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.newsletter-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid rgba(43, 43, 43, 0.1);
    padding: 80px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
}

.footer-tagline {
    font-size: 15px;
    color: var(--black);
    line-height: 1.8;
    opacity: 0.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--black);
    opacity: 0.9;
}

.footer-column a {
    display: block;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    opacity: 0.6;
    line-height: 1.6;
}

.footer-column a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(43, 43, 43, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--black);
    opacity: 0.5;
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 1024px) {
    .founder-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-frame {
        height: 500px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .header-container {
        padding: 15px 30px;
    }
    
    .section-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .logo-text {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        padding: 100px 20px 40px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .hero-image {
        margin-bottom: 40px;
    }
    
    .hero-illustration {
        max-width: 350px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-tag {
        font-size: 10px;
        padding: 5px 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .team-section {
        padding: 80px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .member-image-wrapper {
        height: 300px;
    }
    
    .founder-section {
        padding: 40px 0px;
    }
    
    .founder-card {
        padding: 30px 20px;
    }
    
    .image-frame {
        height: 400px;
    }
    
    .founder-name {
        font-size: 32px;
    }
    
    .founder-title {
        font-size: 14px;
    }
    
    .founder-description {
        font-size: 14px;
    }
    
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-title {
        font-size: 32px;
    }
    
    .input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }
    
    .footer {
        padding: 60px 20px 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column h4 {
        margin-bottom: 20px;
    }
    
    .footer-column a {
        margin-bottom: 12px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .member-name {
        font-size: 20px;
    }
    
    .member-role {
        font-size: 11px;
    }
    
    .member-description {
        font-size: 13px;
    }
    
    .founder-card {
        padding: 25px 15px;
    }
    
    .founder-name {
        font-size: 28px;
    }
    
    .image-frame {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .hero-illustration {
        max-width: 280px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .member-image-wrapper {
        height: 280px;
    }
    
    .member-info {
        padding: 20px;
    }
    
    .founder-badge {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .founder-name {
        font-size: 24px;
    }
    
    .founder-title {
        font-size: 13px;
    }
    
    .founder-description {
        font-size: 13px;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-subtitle {
        font-size: 13px;
    }
}

/* Legal Pages Styles */
.legal-page {
    min-height: 100vh;
    padding: 120px 40px 80px;
    background: var(--white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-family: 'Poppins';
    font-size: 56px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: left;
}

.legal-date {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin-bottom: 50px;
    text-align: left;
}

.legal-section-title {
    font-family: 'Poppins';
    font-size: 40px;
    font-weight: 300;
    color: var(--black);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
}

.legal-text {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.legal-text strong {
    font-weight: 600;
}

.legal-list {
    font-family: 'Poppins';
    font-size: 16px;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 20px;
    margin-left: 20px;
    text-align: left;
}

.legal-list li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 20px 60px;
    }
    
    .legal-title {
        font-size: 32px;
    }
    
    .legal-date {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .legal-section-title {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .legal-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .legal-list {
        font-size: 14px;
        margin-left: 15px;
    }
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-section {
    min-height: 100vh;
    padding: 140px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(43, 43, 43, 0.1);
    box-shadow: 0 10px 40px rgba(43, 43, 43, 0.08);
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2b2b2b;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    padding: 14px 18px;
    border: 2px solid rgba(43, 43, 43, 0.15);
    border-radius: 12px;
    background: white;
    color: #2b2b2b;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #2b2b2b;
    box-shadow: 0 0 0 4px rgba(43, 43, 43, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(43, 43, 43, 0.2);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(43, 43, 43, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Success Message */
.form-success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin-bottom: 24px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.form-success-message h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 12px;
}

.form-success-message p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(43, 43, 43, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.12);
    border-color: rgba(43, 43, 43, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
}

.info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 8px;
}

.info-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(43, 43, 43, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2b2b;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #2b2b2b;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 120px 20px 60px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 30px 24px;
    }
    
    .form-submit-btn {
        width: 100%;
    }
}

