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

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 30px;
}

.loading-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: rgba(255, 255, 255, 0.6);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: rgba(255, 255, 255, 0.4);
    animation-duration: 0.9s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    animation: textFade 2s ease-in-out infinite;
}

@keyframes textFade {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Mobile responsive loading screen */
@media (max-width: 768px) {
    .loading-logo-img {
        width: 100px;
        height: 100px;
        border-radius: 15px;
        padding: 12px;
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
    
    .spinner-ring:nth-child(2) {
        width: 45px;
        height: 45px;
        top: 7.5px;
        left: 7.5px;
    }
    
    .spinner-ring:nth-child(3) {
        width: 30px;
        height: 30px;
        top: 15px;
        left: 15px;
    }
    
    .loading-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .loading-logo-img {
        width: 80px;
        height: 80px;
        border-radius: 12px;
        padding: 10px;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
    }
    
    .spinner-ring:nth-child(2) {
        width: 35px;
        height: 35px;
        top: 7.5px;
        left: 7.5px;
    }
    
    .spinner-ring:nth-child(3) {
        width: 20px;
        height: 20px;
        top: 15px;
        left: 15px;
    }
    
    .loading-text {
        font-size: 0.9rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    width: 0%;
    transition: width 0.3s ease;
}

/* Top Banner Section */
.top-banner {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

.banner-content {
    color: white;
    padding: 40px 0;
}

.banner-logo {
    margin-bottom: 30px;
}

.banner-logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
    border-radius: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.banner-logo-img:hover {
    transform: scale(1.05);
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.banner-subtitle {
    font-size: 1.4rem;
    color: #4fc3f7;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
}

.banner-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.banner-stats {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
    flex: 0 0 auto;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4fc3f7;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.banner-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.6s ease;
}

/* Flip Container Styles */
.flip-container {
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.flip-box {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: flip 4s infinite;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.flip-back {
    transform: rotateY(180deg);
}

.flip-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    75% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}

/* Hover effect for flip container */
.flip-container:hover .flip-box {
    animation-play-state: paused;
}

.flip-container:hover .flip-inner {
    transform: rotateY(180deg);
}


/* Mobile Responsive for Top Banner */
@media (max-width: 1024px) {
    .banner-container {
        gap: 60px;
    }
    
    .banner-title {
        font-size: 3rem;
    }
    
    .banner-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .top-banner {
        min-height: auto;
        padding: 80px 0;
    }
    
    .banner-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .banner-logo-img {
        width: 180px;
        height: 180px;
        border-radius: 25px;
        padding: 15px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .banner-description {
        font-size: 1.1rem;
    }
    
    .banner-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .banner-image {
        height: 300px;
        order: -1;
    }
    
    .flip-front, .flip-back {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        padding: 60px 0;
    }
    
    .banner-logo-img {
        width: 150px;
        height: 150px;
        border-radius: 20px;
        padding: 12px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-stats {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .banner-image {
        height: 250px;
    }
    
    .flip-front, .flip-back {
        border-radius: 10px;
    }
}

/* Image1 Showcase Section */
.image1-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.image2-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
    overflow: hidden;
}

.image2-showcase .showcase-container {
    grid-template-columns: 1fr 1fr;
}

.image2-showcase .showcase-image {
    order: 1;
}

.image2-showcase .showcase-content {
    order: 2;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-content {
    padding: 40px 0;
}

.showcase-text {
    max-width: 600px;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: #4ecdc4;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
}

.showcase-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

.showcase-features {
    margin-bottom: 40px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 0;
}

.feature-point i {
    color: #4ecdc4;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-point span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.showcase-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.showcase-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transition: transform 0.6s ease;
}

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

/* Mobile Responsive for Image1 Showcase */
@media (max-width: 1024px) {
    .showcase-container {
        gap: 60px;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .showcase-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .image1-showcase {
        padding: 80px 0;
    }
    
    .image2-showcase {
        padding: 80px 0;
    }
    
    .image2-showcase .showcase-container {
        grid-template-columns: 1fr;
    }
    
    .image2-showcase .showcase-image {
        order: 1;
    }
    
    .image2-showcase .showcase-content {
        order: 2;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .showcase-title {
        font-size: 2.2rem;
    }
    
    .showcase-subtitle {
        font-size: 1.2rem;
    }
    
    .showcase-description {
        font-size: 1rem;
    }
    
    .showcase-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .showcase-cta {
        justify-content: center;
    }
    
    .showcase-image {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 480px) {
    .image1-showcase {
        padding: 60px 0;
    }
    
    .image2-showcase {
        padding: 60px 0;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .showcase-subtitle {
        font-size: 1.1rem;
    }
    
    .showcase-description {
        font-size: 0.95rem;
    }
    
    .showcase-features {
        max-width: 100%;
    }
    
    .feature-point {
        padding: 8px 0;
    }
    
    .feature-point i {
        font-size: 1.1rem;
    }
    
    .feature-point span {
        font-size: 0.9rem;
    }
    
    .showcase-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .showcase-image {
        height: 300px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Desktop Navigation - Always visible on desktop */
.desktop-nav {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile Navigation - Hidden on desktop, visible on mobile */
.mobile-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Force desktop navigation visibility on all screen sizes above mobile */
@media (min-width: 769px) {
    .desktop-nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Completely hide all mobile menu toggles on desktop */
    .desktop-nav .mobile-menu-toggle,
    .desktop-nav .mobile-menu-toggle-backup,
    .desktop-nav .mobile-menu-toggle-always-visible {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }
    
    /* Hide floating mobile menu on desktop */
    .floating-mobile-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Additional rules to ensure all mobile toggles are hidden on desktop */
    .desktop-nav .mobile-menu-toggle,
    .desktop-nav .mobile-menu-toggle-backup,
    .desktop-nav .mobile-menu-toggle-always-visible,
    .floating-mobile-menu,
    .floating-menu-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
    }
}

/* Ensure desktop navigation is visible on larger screens */
@media (min-width: 769px) {
    .desktop-nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
    }
    
    .desktop-nav .nav-menu {
        display: flex !important;
        position: static !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
        gap: 30px !important;
        margin-left: auto !important;
    }
    
    .desktop-nav .nav-item {
        margin: 0 !important;
        width: auto !important;
        text-align: left !important;
    }
    
    .desktop-nav .nav-link {
        display: inline-block !important;
        padding: 0 !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        color: #333 !important;
        text-decoration: none !important;
        border-bottom: none !important;
        transition: all 0.3s ease !important;
        position: relative !important;
    }
    
    .desktop-nav .nav-link:hover {
        background: transparent !important;
        color: #ff6b6b !important;
        transform: none !important;
    }
    
    .desktop-nav .nav-link.active {
        background: transparent !important;
        color: #ff6b6b !important;
    }
    
    .desktop-nav .mobile-menu-toggle,
    .desktop-nav .mobile-menu-toggle-backup,
    .desktop-nav .mobile-menu-toggle-always-visible {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Hide floating mobile menu on desktop */
    .floating-mobile-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Additional rules to ensure all mobile toggles are hidden on desktop */
    .desktop-nav .mobile-menu-toggle,
    .desktop-nav .mobile-menu-toggle-backup,
    .desktop-nav .mobile-menu-toggle-always-visible,
    .floating-mobile-menu,
    .floating-menu-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
    }
}

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

/* Ensure desktop navigation container properly aligns menu to right */
.desktop-nav .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-link:hover {
    color: #ff6b6b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

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

/* Mobile Navigation - New System */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    z-index: 1001;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1 !important;
    visibility: visible !important;
}


.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-content {
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.btn-outline:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-2px);
}

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

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

/* Why Choose Us - Light Trendy Design */
.why-choose-us {
    padding: 0;
    background: #fafbfc;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.why-choose-us .section-header {
    display: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 0;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* Ensure features grid displays as 2x2 on desktop */
@media (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
    }
}

.feature {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 35px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.03) 0%,
        rgba(78, 205, 196, 0.03) 25%,
        rgba(69, 183, 209, 0.03) 50%,
        rgba(150, 206, 180, 0.03) 75%,
        rgba(102, 126, 234, 0.03) 100%);
    background-size: 300% 300%;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
    animation: gradientShift 4s ease infinite;
}

.feature::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.2), rgba(78, 205, 196, 0.2), rgba(69, 183, 209, 0.2), rgba(150, 206, 180, 0.2), rgba(102, 126, 234, 0.2));
    background-size: 400% 400%;
    border-radius: 32px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGlow 3s linear infinite;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover::after {
    opacity: 1;
}

.feature:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature i {
    font-size: 4rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #667eea, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    animation: iconPulse 3s ease-in-out infinite;
}

.feature:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
    animation: iconSpin 0.8s ease-in-out;
}

.feature h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #2d3748;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes iconSpin {
    0% { transform: scale(1.3) rotate(0deg); }
    100% { transform: scale(1.3) rotate(360deg); }
}

/* Responsive Design for Ultra Trendy Boxes */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 0;
    }
    
    .feature {
        padding: 40px 30px;
    }
    
    .feature i {
        font-size: 3rem;
        margin-bottom: 25px;
    }
    
    .feature h4 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .feature p {
        font-size: 1rem;
    }
}

.about-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    flex: 0 0 auto;
    width: 200px;
    max-width: 200px;
    min-width: 180px;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.product-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
}

.contact-text {
    flex: 0 0 30%;
    max-width: 30%;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4ecdc4;
}

.contact-text h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.contact-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 8px 10px;
    background: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    border-left: 2px solid #ff6b6b;
    transition: all 0.3s ease;
    min-height: auto;
    height: fit-content;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1rem;
    color: #ff6b6b;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.8rem;
    margin-bottom: 4px;
    color: #2c3e50;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.contact-item p {
    color: #666;
    line-height: 1.3;
    font-size: 0.75rem;
    margin: 0;
}

.contact-item-content {
    flex: 1;
}

/* Contact Information Box Styles */
.contact-info-box {
    flex: 0 0 30%;
    max-width: 30%;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ffa8c5 100%);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
    color: white;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.contact-info-box * {
    position: relative;
    z-index: 1;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-info-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-detail-item:hover::before {
    width: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

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

.contact-detail-content {
    flex: 1;
}

.contact-detail-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-detail-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 5px 0;
    opacity: 0.95;
    font-weight: 400;
}

.contact-label {
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: italic;
    display: block;
    margin-top: 5px;
}

.contact-social {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-social h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-social .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-social .social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-social .social-link i {
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4ecdc4;
    flex: 0 0 65%;
    max-width: 65%;
}

.contact-form h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.contact-form p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

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

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Footer logo section - keeps logo size unchanged */
.footer-logo-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

/* Footer content section - contains Quick Links and Products */
.footer-content-section {
    flex: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Container for Quick Links and Products with equal spacing */
.footer-links-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

/* Individual footer links sections */
.footer-links {
    min-width: 150px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: #ff6b6b;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
}



.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop navigation on mobile */
    .desktop-nav {
        display: none !important;
    }
    
    /* Show mobile navigation on mobile */
    .mobile-nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure mobile menu toggle is visible on mobile */
    .mobile-nav .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    /* Fix mobile layout for about page */
    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .page-header {
        padding: 100px 0 60px !important;
    }
    
    .page-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }
    
    .page-subtitle {
        font-size: 1rem !important;
    }
    
    .about {
        padding: 60px 0 !important;
    }
    
    .about-text h3 {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }
    
    .about-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    .value-item {
        padding: 20px 15px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    .value-item i {
        font-size: 1.5rem !important;
        margin-top: 0 !important;
    }
    
    .value-item h4 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    
    .value-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .about-stats {
        flex-direction: row !important;
        align-items: center !important;
        gap: 20px !important;
        margin-top: 30px !important;
        justify-content: center !important;
    }
    
    .stat {
        padding: 25px 15px !important;
    }
    
    .stat h3 {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
    }
    
    .stat p {
        font-size: 0.9rem !important;
    }
    
    /* Fix mobile layout for other about page sections */
    .product-showcase {
        padding: 60px 0 !important;
    }
    
    .showcase-trendy {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .trendy-title {
        font-size: 2rem !important;
        margin-bottom: 20px !important;
    }
    
    .trendy-description {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }
    
    .trendy-features {
        align-items: center !important;
    }
    
    .feature-item {
        max-width: 100% !important;
        padding: 12px 15px !important;
    }
    
    .gfc-kit {
        padding: 60px 0 !important;
    }
    
    .gfc-intro h3,
    .gfc-benefits h3 {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .gfc-list li {
        padding: 15px !important;
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .benefit-item {
        padding: 20px 15px !important;
    }
    
    .benefit-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .benefit-item h4 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    
    .benefit-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .summary-box {
        padding: 25px 15px !important;
    }
    
    .summary-box h4 {
        font-size: 1.2rem !important;
        margin-bottom: 15px !important;
    }
    
    .summary-box p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    /* Mobile responsive footer */
    .footer-content {
        flex-direction: column !important;
        gap: 30px !important;
        justify-content: center !important;
    }
    
    .footer-logo-section {
        text-align: center !important;
        justify-content: center !important;
    }
    
    .footer-content-section {
        text-align: center !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .footer-links-container {
        justify-content: center !important;
        gap: 30px !important;
        flex-direction: column !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative !important;
        z-index: 1001 !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Force visibility even if other styles try to hide it */
    .mobile-menu-toggle[style*="display: none"],
    .mobile-menu-toggle[style*="opacity: 0"],
    .mobile-menu-toggle[style*="visibility: hidden"] {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Backup mobile menu toggle for about page */
    .mobile-menu-toggle-backup {
        display: none !important;
        position: absolute !important;
        top: 50% !important;
        right: 20px !important;
        transform: translateY(-50%) !important;
        z-index: 1002 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        padding: 8px !important;
        border: none !important;
        flex-direction: column !important;
        width: 44px !important;
        height: 44px !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .mobile-menu-toggle-backup span {
        width: 28px !important;
        height: 3px !important;
        background: #333 !important;
        margin: 3px 0 !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
        display: block !important;
    }
    
    /* Third mobile menu toggle - always visible */
    .mobile-menu-toggle-always-visible {
        display: none !important;
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 9999 !important;
        background: #ff6b6b !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        padding: 12px !important;
        border: none !important;
        flex-direction: column !important;
        width: 60px !important;
        height: 60px !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .mobile-menu-toggle-always-visible span {
        width: 24px !important;
        height: 3px !important;
        background: white !important;
        margin: 2px 0 !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
        display: block !important;
    }
    
    /* Floating Mobile Menu - Always Visible */
    .floating-mobile-menu {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 99999 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .floating-menu-btn {
        width: 60px !important;
        height: 60px !important;
        background: #ff6b6b !important;
        border: none !important;
        border-radius: 50% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        cursor: pointer !important;
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4) !important;
        transition: all 0.3s ease !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .floating-menu-btn:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6) !important;
    }
    
    .floating-menu-btn span {
        width: 24px !important;
        height: 3px !important;
        background: white !important;
        margin: 2px 0 !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
        display: block !important;
    }
    
    .floating-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    
    .floating-menu-btn.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .floating-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }
    
    .floating-menu-content {
        position: absolute !important;
        top: 70px !important;
        left: 0 !important;
        background: white !important;
        border-radius: 10px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
        padding: 20px !important;
        min-width: 200px !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-20px) !important;
        transition: all 0.3s ease !important;
    }
    
    .floating-menu-content.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .floating-menu-content a {
        display: block !important;
        padding: 12px 16px !important;
        color: #333 !important;
        text-decoration: none !important;
        border-radius: 6px !important;
        margin-bottom: 8px !important;
        transition: all 0.3s ease !important;
        font-weight: 500 !important;
    }
    
    .floating-menu-content a:hover {
        background: #f8f9fa !important;
        color: #ff6b6b !important;
    }
    
    .floating-menu-content a:last-child {
        margin-bottom: 0 !important;
    }
}

/* Floating Mobile Menu - Always Visible (Outside Media Query) */
.floating-mobile-menu {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.floating-menu-btn {
    width: 60px !important;
    height: 60px !important;
    background: #ff6b6b !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4) !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
}

.floating-menu-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6) !important;
}

.floating-menu-btn span {
    width: 24px !important;
    height: 3px !important;
    background: white !important;
    margin: 2px 0 !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
    display: block !important;
}

.floating-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
}

.floating-menu-btn.active span:nth-child(2) {
    opacity: 0 !important;
}

.floating-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
}

.floating-menu-content {
    position: absolute !important;
    top: 70px !important;
    right: 0 !important;
    background: white !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    padding: 20px !important;
    min-width: 200px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-20px) !important;
    transition: all 0.3s ease !important;
}

.floating-menu-content.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.floating-menu-content a {
    display: block !important;
    padding: 12px 16px !important;
    color: #333 !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    margin-bottom: 8px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
}

.floating-menu-content a:hover {
    background: #f8f9fa !important;
    color: #ff6b6b !important;
}

.floating-menu-content a:last-child {
    margin-bottom: 0 !important;
}

    .nav-menu {
        position: fixed;
        top: 100px;
        left: 50%;
        transform: translateX(-50%) translateX(-100%);
        width: 100%;
        height: calc(100vh - 100px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    /* Override mobile nav-menu styles for desktop navigation */
    .desktop-nav .nav-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
        box-shadow: none !important;
        margin-left: auto !important;
    }

    .nav-menu.active {
        transform: translateX(-50%);
    }

    .nav-menu .nav-item {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 20px 30px;
        font-size: 1.2rem;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-menu .nav-link:hover {
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
        color: white;
        transform: translateX(10px);
    }

    .nav-menu .nav-link.active {
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
        color: white;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about-stats {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }
    
    .stat {
        width: 180px;
        max-width: 180px;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info-box {
        flex: none;
        max-width: 100%;
        padding: 30px 25px;
        order: 1;
    }
    
    .contact-info-header h3 {
        font-size: 1.6rem;
    }
    
    .contact-info-header p {
        font-size: 0.95rem;
    }
    
    .contact-details {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .contact-detail-item {
        padding: 18px 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .contact-detail-content h4 {
        font-size: 1rem;
    }
    
    .contact-detail-content p {
        font-size: 0.9rem;
    }
    
    .contact-social h4 {
        font-size: 1.1rem;
    }
    
    .contact-social .social-link {
        width: 40px;
        height: 40px;
    }
    
    .contact-social .social-link i {
        font-size: 1rem;
    }
    
    .contact-text {
        flex: none;
        max-width: 100%;
        padding: 18px 15px;
    }
    
    .contact-form {
        flex: none;
        max-width: 100%;
        order: 2;
    }
    
    .contact-info {
        gap: 8px;
    }
    
    .contact-text h3 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .contact-text p {
        text-align: center;
        font-size: 0.95rem;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .contact-item {
        padding: 18px 15px;
        min-height: auto;
    }
    
    .contact-item i {
        font-size: 1.6rem;
        margin-right: 12px;
        margin-bottom: 0;
    }
    
    .contact-item h4 {
        font-size: 0.85rem;
    }
    
    .contact-item p {
        font-size: 0.75rem;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .contact-form p {
        text-align: center;
        font-size: 0.95rem;
    }

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-box {
        padding: 25px 20px;
    }
    
    .contact-info-header h3 {
        font-size: 1.4rem;
    }
    
    .contact-info-header p {
        font-size: 0.9rem;
    }
    
    .contact-details {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .contact-detail-item {
        padding: 15px 12px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .contact-detail-content h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .contact-detail-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-social {
        padding-top: 20px;
    }
    
    .contact-social h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .contact-social .social-links {
        gap: 12px;
    }
    
    .contact-social .social-link {
        width: 38px;
        height: 38px;
    }
    
    .contact-social .social-link i {
        font-size: 0.95rem;
    }
    
    .contact-text {
        flex: none;
        max-width: 100%;
        padding: 15px 12px;
    }
    
    .contact-form {
        flex: none;
        max-width: 100%;
    }
    
    .contact-info {
        gap: 6px;
    }
    
    .contact-text h3 {
        font-size: 1.2rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 15px 12px;
        min-height: auto;
    }
    
    .contact-item i {
        font-size: 1.4rem;
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .contact-item h4 {
        font-size: 0.8rem;
    }
    
    .contact-item p {
        font-size: 0.7rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    .contact-form p {
        font-size: 0.9rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Featured Products Preview */
.featured-products {
    padding: 80px 0;
    background: white;
}

.products-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.product-preview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.product-preview-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-preview-card:hover .product-preview-image img {
    transform: scale(1.05);
}

.product-preview-content {
    padding: 25px;
}

.product-preview-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.product-preview-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.view-all-products {
    text-align: center;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-top: 5px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

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

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

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

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

.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-info {
    padding: 30px;
}

.team-member-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.position {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.bio {
    color: #666;
    line-height: 1.6;
}

/* Product Categories */
.product-categories {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    border: 2px solid #ff6b6b;
    background: transparent;
    color: #ff6b6b;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: #ff6b6b;
    color: white;
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: #ff6b6b;
    width: 16px;
}

/* PlateXOGen Specific Styles */
.platexogen-card .product-subtitle {
    font-size: 0.9rem;
    color: #4ecdc4;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.product-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.learn-more-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.learn-more-btn.expanded {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
}

/* PlateXOGen Details Section */
.platexogen-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    margin-top: 20px;
}

.platexogen-details.expanded {
    max-height: 2000px;
}

.details-content {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #4ecdc4;
}

.details-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
}

.details-content h4:first-child {
    margin-top: 0;
}

.details-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.benefits-list li {
    background: white;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    border-left: 3px solid #ff6b6b;
    color: #555;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.benefits-list li strong {
    color: #2c3e50;
}

.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info h4 {
    color: white;
    margin-bottom: 10px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-details p {
    margin: 0;
    padding: 5px 0;
}

.contact-details p strong {
    color: white;
    font-weight: 600;
}

/* Responsive Design for PlateXOGen Details */
@media (max-width: 768px) {
    .product-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .learn-more-btn {
        justify-content: center;
    }
    
    .details-content {
        padding: 20px 15px;
    }
    
    .details-content h4 {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 20px 15px;
        margin: 20px 0;
        border-radius: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-info h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: left;
        word-break: break-word;
    }
    
    .contact-details {
        gap: 10px;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 3px 0;
    }
    
    .contact-info br {
        display: block;
        margin: 4px 0;
        content: "";
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
    .details-content {
        padding: 15px 10px;
    }
    
    .contact-info {
        padding: 15px 10px;
        margin: 15px 0;
    }
    
    .contact-info h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .contact-info p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .contact-details {
        gap: 8px;
    }
    
    .contact-details p {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 2px 0;
    }
    
    .benefits-list li {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

/* Product Benefits */
.product-benefits {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

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

.faq-question h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

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

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

.faq-answer {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}



/* Active Navigation Link */
.nav-link.active {
    color: #ff6b6b;
}

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

/* Product Showcase Section - Trendy & Big */
.product-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.showcase-trendy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.showcase-visual {
    position: relative;
}

.showcase-image-trendy {
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-image-trendy:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.showcase-img-trendy {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(1.1) contrast(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.trendy-badge {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.showcase-content-trendy {
    color: white;
}

.trendy-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.trendy-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.trendy-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.trendy-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #ff6b6b;
    width: 30px;
    text-align: center;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

/* Mobile Responsive for Trendy Showcase */
@media (max-width: 1024px) {
    .showcase-trendy {
        gap: 40px;
    }
    
    .trendy-title {
        font-size: 2.5rem;
    }
    
    .showcase-img-trendy {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 80px 0;
    }
    
    .showcase-trendy {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .showcase-image-trendy {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .showcase-image-trendy:hover {
        transform: scale(1.02);
    }
    
    .trendy-title {
        font-size: 2.2rem;
    }
    
    .trendy-description {
        font-size: 1.1rem;
    }
    
    .trendy-features {
        align-items: center;
    }
    
    .feature-item {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .product-showcase {
        padding: 60px 0;
    }
    
    .trendy-title {
        font-size: 1.8rem;
    }
    
    .trendy-description {
        font-size: 1rem;
    }
    
    .showcase-img-trendy {
        height: 250px;
    }
    
    .feature-item {
        padding: 12px 15px;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
}

/* GFC Kit Section Styles */
.gfc-kit {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gfc-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gfc-intro {
    margin-bottom: 60px;
    text-align: center;
}

.gfc-intro h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.gfc-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.gfc-list li {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 4px solid #4ecdc4;
}

.gfc-benefits h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #ff6b6b;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.gfc-summary {
    text-align: center;
}

.summary-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.summary-box h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.summary-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for GFC Section */
@media (max-width: 768px) {
    .gfc-kit {
        padding: 60px 0;
    }
    
    .gfc-intro h3,
    .gfc-benefits h3 {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 25px;
    }
    
    .summary-box {
        padding: 30px 20px;
    }
    
    .summary-box h4 {
        font-size: 1.3rem;
    }
    
    .summary-box p {
        font-size: 1.1rem;
    }
}

/* Video Section Styles */
.video-section {
    padding: 0;
    background: #000;
    overflow: hidden;
}

.video-container-single {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container-single video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-fallback img {
    opacity: 0.8;
    filter: brightness(0.7);
}

/* Hide fallback when video is loaded and playing */
.video-container video.loaded + .video-fallback {
    display: none;
}

/* Ensure video is visible */
.video-container video {
    z-index: 2;
    position: relative;
}

/* Responsive Design for Video Section */
@media (max-width: 768px) {
    .video-container-single {
        height: 50vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .video-container-single {
        height: 40vh;
        min-height: 300px;
    }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Logo in Headings */
.logo-in-heading {
    height: 1em;
    width: auto;
    vertical-align: middle;
    margin: 0 0.2em;
    display: inline-block;
    background: transparent;
    mix-blend-mode: multiply;
    filter: contrast(1.5) brightness(1.2);
}

/* Adjust logo sizing for different heading levels */
.hero-title .logo-in-heading {
    height: 1.2em;
    margin: 0 0.3em;
    background: transparent;
    mix-blend-mode: multiply;
    filter: contrast(1.2) brightness(1.1);
}

.section-title .logo-in-heading {
    height: 1em;
    margin: 0 0.2em;
}

.page-title .logo-in-heading {
    height: 1.1em;
    margin: 0 0.25em;
}

h3 .logo-in-heading {
    height: 0.9em;
    margin: 0 0.15em;
}

/* Responsive adjustments for logo in headings */
@media (max-width: 768px) {
    .hero-title .logo-in-heading {
        height: 1em;
        margin: 0 0.2em;
    }
    
    .section-title .logo-in-heading {
        height: 0.9em;
        margin: 0 0.15em;
    }
    
    .page-title .logo-in-heading {
        height: 1em;
        margin: 0 0.2em;
    }
    
    h3 .logo-in-heading {
        height: 0.8em;
        margin: 0 0.1em;
    }
} 