:root {
    --primary-color: #1e3a8a;
    --secondary-color: #f59e0b;
    --accent-color: #06b6d4;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --text-color: #334155;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}

/* Top Bar */
.top-bar {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-info i {
    color: var(--secondary-color);
}

.trust-badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    color: #10b981;
}

/* Header */
header {
    background: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

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

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

.logo i {
    font-size: 32px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.cta-button {
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: visible;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 2;
}

.floating-ship {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.ship-1 {
    top: 10%;
    right: 10%;
    font-size: 80px;
    animation-delay: 0s;
}

.ship-2 {
    bottom: 20%;
    left: 5%;
    font-size: 60px;
    animation-delay: 5s;
}

.ship-3 {
    top: 50%;
    right: 30%;
    font-size: 40px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(10px) translateX(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-10px) translateX(5px) rotate(3deg);
    }
}

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

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.2);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

/* Modern Hero Buttons */
.btn-hero-primary {
    background:  linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #fff;
    padding: 18px 44px;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.18);
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    transition: left 0.4s cubic-bezier(.4,0,.2,1);
    z-index: 0;
}
.btn-hero-primary:hover::before {
    left: 0;
}
.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.22);
}
.btn-hero-primary i {
    font-size: 20px;
    z-index: 1;
}

.btn-hero-secondary {
    background: #fff;
    color:  #f59e0b;
    padding: 18px 44px;
    border: 2px solid #f59e0b;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(212, 164, 6, 0.1);
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}
.btn-hero-secondary:hover {
    background: #e0f7fa;
    color: #0284c7;
    border-color: #0284c7;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 28px rgba(6, 182, 212, 0.16);
}
.btn-hero-secondary i {
    font-size: 20px;
    z-index: 1;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: float-smooth 6s infinite ease-in-out;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

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

.hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
    border-radius: 20px;
}

.hero-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4));
}


.stats-container {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 12px 30px;
    border-radius: 20px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    display: flex;
    gap: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    min-width: 450px;
    max-width: 600px;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s ease;
    flex: 1;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 0.3;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(30, 58, 138, 0.15), transparent);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--primary-color);
}

/* Section Containers */
.section {
    padding: 80px 0;
    position: relative;
}

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

.section h1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.section:nth-child(even) {
    background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 40px;
    }

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

    .modern-stats {
        position: relative;
        bottom: auto;
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .stat-modern {
        min-width: 200px;
        padding: 15px 20px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon i {
        font-size: 16px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-desc {
        font-size: 11px;
    }

    .hero-stats-slim {
        position: relative;
        bottom: auto;
        margin-top: 25px;
        min-width: auto;
        max-width: none;
        padding: 6px 15px;
        gap: 20px;
        height: 45px;
    }

    .stat-card {
        padding: 3px 6px;
    }

    .stat-num {
        font-size: 20px;
    }

    .stat-text {
        font-size: 9px;
    }

    .stats-container {
        position: relative;
        bottom: auto;
        margin-top: 30px;
        min-width: auto;
        max-width: none;
        padding: 10px 20px;
        gap: 25px;
    }

    .stat-item {
        padding: 6px 8px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        justify-content: center;
        text-align: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-xl);
        padding-top: 80px;
        gap: 20px;
    }

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

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .modern-stats {
        gap: 12px;
        margin-top: 25px;
    }

    .stat-modern {
        min-width: 180px;
        padding: 12px 15px;
        gap: 12px;
    }

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

    .stat-icon i {
        font-size: 14px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-desc {
        font-size: 10px;
    }

    .hero-stats-slim {
        flex-direction: column;
        gap: 8px;
        padding: 8px 12px;
        min-width: auto;
        max-width: none;
        width: 100%;
        margin: 25px auto 0;
        height: auto;
    }

    .stat-card {
        padding: 6px 8px;
        border-bottom: 1px solid rgba(30, 58, 138, 0.08);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .stat-card::after {
        display: none;
    }

    .stat-num {
        font-size: 18px;
        margin-top: 0;
    }

    .stat-text {
        font-size: 10px;
        margin-top: 0;
    }

    .stats-container {
        flex-direction: column;
        gap: 15px;
        padding: 12px 15px;
        min-width: auto;
        max-width: none;
        width: 100%;
        margin: 30px auto 0;
    }

    .stat-item {
        padding: 8px 12px;
        border-bottom: 1px solid rgba(30, 58, 138, 0.08);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item::after {
        display: none;
    }

    .stat-item::before {
        width: 100%;
        height: 2px;
        top: auto;
        bottom: -8px;
        left: 0;
        transform: none;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .section h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .top-bar-info {
        font-size: 12px;
        gap: 10px;
    }

    .logo {
        font-size: 24px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        font-size: 15px;
        border-radius: 40px;
    }

    .btn-primary i,
    .btn-secondary i {
        font-size: 16px;
    }

    .stat-number {
        font-size: 24px;
    }
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
    overflow: hidden;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Ship Container */
.ship-container {
    position: relative;
    animation: shipFloat 3s ease-in-out infinite;
}

.ship-svg {
    width: 500px;
    height: 250px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    animation: shipSway 6s ease-in-out infinite;
}

@keyframes shipFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
    75% {
        transform: translateY(-12px) rotate(-0.5deg);
    }
}

@keyframes shipSway {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(15px);
    }
}

/* Container Animation - More realistic */
.ship-svg .container-row-1,
.ship-svg .container-row-2,
.ship-svg .container-row-3 {
    animation: containerStack 4s ease-in-out infinite;
}

.ship-svg .container-row-2 {
    animation-delay: 0.5s;
}

.ship-svg .container-row-3 {
    animation-delay: 1s;
}

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

/* Individual container glow effects */
.ship-svg rect[fill="url(#containerGradient1)"],
.ship-svg rect[fill="url(#containerGradient2)"],
.ship-svg rect[fill="url(#containerGradient3)"],
.ship-svg rect[fill="url(#containerGradient4)"],
.ship-svg rect[fill="#e67e22"],
.ship-svg rect[fill="#1abc9c"],
.ship-svg rect[fill="#e91e63"],
.ship-svg rect[fill="#2c3e50"],
.ship-svg rect[fill="#74b9ff"],
.ship-svg rect[fill="#00b894"],
.ship-svg rect[fill="#8b4513"],
.ship-svg rect[fill="#9b59b6"] {
    animation: containerGlow 3s ease-in-out infinite alternate;
}

@keyframes containerGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    }
    100% {
        filter: brightness(1.1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
    }
}

/* Crane animation */
.ship-svg rect[x="30"] {
    animation: craneSway 8s ease-in-out infinite;
}

@keyframes craneSway {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(2px);
    }
    75% {
        transform: translateX(-2px);
    }
}

/* Water wake animation */
.ship-svg path[stroke="#ecf0f1"] {
    animation: wakeFlow 2s ease-in-out infinite;
}

@keyframes wakeFlow {
    0%, 100% {
        opacity: 0.6;
        stroke-width: 2;
    }
    50% {
        opacity: 0.9;
        stroke-width: 3;
    }
}

/* Loader Text */
.loader-text {
    text-align: center;
    color: white;
}

.loader-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.loader-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
    font-weight: 500;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

/* Loading Dots */
.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    border-radius: 20px;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Progress Bar */
.progress-container {
    width: 300px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    border-radius: 20px;
    animation: progressLoad 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes progressShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.progress-text {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    animation: textFade 2s ease-in-out infinite alternate;
}

@keyframes textFade {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Background Waves */
.loader-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: waveMove 8s linear infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.3;
}

.wave-2 {
    animation-delay: 2s;
    opacity: 0.2;
    height: 80px;
}

.wave-3 {
    animation-delay: 4s;
    opacity: 0.1;
    height: 60px;
}

@keyframes waveMove {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .blogs-grid,
    .testimonials-grid,
    .team-grid,
    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Blogs Section */
    .blogs-section {
        padding: 60px 0;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card {
        margin: 0 10px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        margin: 0 10px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-cta {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    /* Team Section */
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .team-card {
        margin: 0 10px;
    }
    
    .team-image {
        height: 250px;
    }
    
    .team-social {
        gap: 10px;
    }
    
    .team-social .social-link {
        width: 40px;
        height: 40px;
    }
    
    .team-cta {
        padding: 30px 20px;
    }
    
    /* Certifications Section */
    .certifications-section {
        padding: 60px 0;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .certification-card {
        margin: 0 10px;
    }
    
    .certification-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .certifications-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .team-name {
        font-size: 20px;
    }
    
    .certification-title {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .expertise-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ship-svg {
        width: 400px;
        height: 200px;
    }
    
    .loader-title {
        font-size: 36px;
    }
    
    .loader-subtitle {
        font-size: 16px;
    }
    
    .progress-container {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .ship-svg {
        width: 300px;
        height: 150px;
    }
    
    .loader-title {
        font-size: 28px;
    }
    
    .loader-subtitle {
        font-size: 14px;
    }
    
    .progress-container {
        width: 200px;
    }
    
    .loader-container {
        gap: 30px;
    }
}

/* About Section Styles */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
}

.section-title span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 24px;
    color: white;
}

.about-feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.about-feature-content p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 40px;
    padding: 30px;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.about-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    transform: rotate(-3deg);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.about-image-wrapper:nth-child(1) {
    transform: translateY(30px);
}

.about-image-wrapper:nth-child(3) {
    transform: translateY(30px);
}

.about-image-wrapper:hover {
    transform: scale(1.05) rotate(3deg);
    z-index: 10;
}

.about-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.1);
}

.about-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float-smooth 4s infinite ease-in-out;
}

.about-badge i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-badge span {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 18px;
}

/* Products Section Styles */
.products-section {
    background: white;
    position: relative;
}

.products-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.product-card-header {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--gradient-primary);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-content {
    padding: 30px;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.product-feature i {
    color: var(--primary-color);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.product-action {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.product-action:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.view-all-products {
    text-align: center;
    margin-top: 60px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 18px 40px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float-element 20s infinite ease-in-out;
    pointer-events: none;
}

.float-1 {
    top: 10%;
    left: 5%;
    font-size: 60px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 10%;
    right: 5%;
    font-size: 80px;
    animation-delay: 5s;
}

.float-3 {
    top: 50%;
    right: 10%;
    font-size: 40px;
    animation-delay: 10s;
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(10deg);
    }
    66% {
        transform: translateY(30px) rotate(-10deg);
    }
}

/* Best Selling Section Styles */
.best-selling-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.best-selling-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    animation: pulse 6s ease-in-out infinite;
}

.best-selling-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.section-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0;
}

.best-selling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.best-selling-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.best-selling-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.best-selling-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.best-selling-badge i {
    font-size: 14px;
}

.best-selling-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--gradient-primary);
}

.best-selling-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.best-selling-card:hover .best-selling-image img {
    transform: scale(1.1);
}

.best-selling-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.best-selling-card:hover .best-selling-overlay {
    opacity: 1;
}

.best-selling-content {
    padding: 30px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbf24;
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.product-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.stat i {
    color: var(--primary-color);
}

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

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
}

.best-selling-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stats-summary {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.summary-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.summary-label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.view-all-best-selling {
    flex-shrink: 0;
}

/* What We Do Section Styles */
.what-we-do-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    border-radius: 20px;
    animation: pulse 8s ease-in-out infinite;
}

.what-we-do-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-content {
    position: relative;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.service-features i {
    color: var(--primary-color);
    font-size: 12px;
}

.service-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.service-stats .stat {
    text-align: center;
    flex: 1;
}

.service-stats .stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.service-stats .stat-label {
    font-size: 12px;
    color: var(--text-color);
    font-weight: 500;
}

.what-we-do-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section {
    background: url('./images/container-ship.jpg') center/cover;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.3);
    margin: 20px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    color: white;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-badge i {
    color: #fbbf24;
    font-size: 16px;
}

.cta-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #1e3a8a;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.cta-text p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #1f2937;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 15px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.cta-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.feature-item i {
    color: #fbbf24;
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-actions .btn-primary,
.cta-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 180px;
}

.cta-actions .btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    border: 2px solid rgba(30, 58, 138, 0.3);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-actions .btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.6);
}

.cta-actions .btn-secondary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    border: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-actions .btn-secondary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.cta-actions .btn-primary i,
.cta-actions .btn-secondary i {
    font-size: 16px;
}

.cta-actions .btn-primary span,
.cta-actions .btn-secondary span {
    font-size: 14px;
    font-weight: 600;
}

.cta-visual {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1e3a8a;
    border: 2px solid rgba(30, 58, 138, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

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

/* Responsive Design for CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
        margin: 20px 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-text h3 {
        font-size: 28px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
    
    .cta-features {
        justify-content: center;
        gap: 20px;
    }
    
    .cta-actions {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        padding: 16px 24px;
    }
    
    .cta-visual {
        height: 200px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 15px;
    }
    
    .cta-text h3 {
        font-size: 24px;
    }
    
    .cta-text p {
        font-size: 14px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        padding: 14px 20px;
    }
    
    .cta-actions .btn-primary span,
    .cta-actions .btn-secondary span {
        font-size: 14px;
    }
    
    .cta-actions .btn-primary small,
    .cta-actions .btn-secondary small {
        font-size: 11px;
    }
}

/* Products Page Styles */
.products-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.products-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;
}

.products-hero-content {
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb i {
    font-size: 12px;
    opacity: 0.7;
}

.products-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.products-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.hero-features .feature-item i {
    color: #fbbf24;
    font-size: 16px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.products-hero-visual {
    position: relative;
}

.spice-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spice-bowl {
    position: relative;
    z-index: 2;
}

.spice-bowl img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-spices {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.spice-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.spice-icon.spice-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.spice-icon.spice-2 {
    top: 10%;
    right: 20%;
    animation-delay: 2s;
}

.spice-icon.spice-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Spices Collection Section */
.spices-collection {
    padding: 80px 0;
    background: #f8fafc;
}

.collection-header {
    text-align: center;
    margin-bottom: 60px;
}

.spice-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

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

.spice-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.spice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.spice-card:hover .spice-image img {
    transform: scale(1.1);
}

.spice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.overlay-content p {
    color: white;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
}

.spice-content {
    padding: 25px;
}

.spice-category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.spice-category i {
    color: #fbbf24;
}

.spice-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.spice-description {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.spice-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #64748b;
}

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

.spice-footer {
    display: flex;
    justify-content: center;
}

.spice-action {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.spice-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

/* Quality Assurance Section */
.quality-assurance {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

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

.quality-text .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quality-text h2 {
    color: white;
    margin-bottom: 20px;
}

.quality-text p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quality-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.quality-item i {
    color: #fbbf24;
    font-size: 20px;
    margin-top: 2px;
}

.quality-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.quality-item p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.quality-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quality-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.quality-badge i {
    font-size: 48px;
    color: #fbbf24;
    margin-bottom: 15px;
}

.quality-badge span {
    font-size: 16px;
    font-weight: 600;
}

/* Product Categories Section */
.product-categories {
    padding: 80px 0;
    background: #f8fafc;
}

.categories-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.overlay-content p {
    color: white;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
}

.category-content {
    padding: 25px;
    text-align: center;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.category-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.category-description {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.category-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category-features .feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #64748b;
}

.category-features .feature-item i {
    color: #fbbf24;
    font-size: 14px;
}

.category-footer {
    display: flex;
    justify-content: center;
}

.category-action {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.category-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-choose-text h2 {
    color: white;
    margin-bottom: 20px;
}

.why-choose-text p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-choose-item i {
    color: #fbbf24;
    font-size: 20px;
    margin-top: 2px;
}

.why-choose-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.why-choose-item p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.why-choose-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.why-choose-badge i {
    font-size: 48px;
    color: #fbbf24;
    margin-bottom: 15px;
}

.why-choose-badge span {
    font-size: 16px;
    font-weight: 600;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.contact-cta p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Blogs Section Styles */
.blogs-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.blogs-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.blogs-footer {
    text-align: center;
}

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

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #64748b;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #1e40af;
    gap: 12px;
}

.view-all-blogs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-blogs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Testimonials Section Styles */
.testimonials-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 100px 0;
    /* color: white; */
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    justify-items: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title {
    /* color: #cbd5e1; */
    font-size: 14px;
    margin-bottom: 2px;
}

.author-location {
    color: #94a3b8;
    font-size: 12px;
}

.testimonials-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 10px;
}

.stat-label {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-footer {
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-icon {
    font-size: 20px;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.faq-cta p {
    color: #64748b;
    margin-bottom: 25px;
}

/* Team Section Styles */
.team-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.team-footer {
    text-align: center;
}

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

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

.team-social .social-link:hover {
    background: white;
    color: #3b82f6;
    transform: scale(1.1);
}

.team-content {
    padding: 30px;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.team-position {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.team-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.team-cta p {
    color: #64748b;
    margin-bottom: 25px;
}

/* Certifications Section Styles */
.certifications-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 100px 0;
    color: white;
}

.certifications-header {
    text-align: center;
    margin-bottom: 60px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    justify-items: center;
}

.certifications-footer {
    text-align: center;
}

.certification-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.certification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.certification-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.certification-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.certification-year {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.certifications-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.certifications-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.certifications-cta p {
    color: #cbd5e1;
    margin-bottom: 25px;
}

/* Live Chat Widget Styles */
.live-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-agent {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-agent img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.agent-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.agent-status {
    font-size: 12px;
    opacity: 0.8;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
}

.agent-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.agent-message .message-content {
    background: #f1f5f9;
    color: #334155;
}

.user-message .message-content {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.message-time {
    font-size: 11px;
    color: #64748b;
    margin-top: 5px;
    text-align: right;
}

.agent-message .message-time {
    text-align: left;
}

.chat-input-container {
    padding: 15px 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: #3b82f6;
}

.chat-send {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.1);
}

.chat-quick-actions {
    padding: 0 20px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-action {
    padding: 8px 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    font-size: 12px;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* Quote Calculator Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-calculator-modal {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .quote-calculator-modal {
    transform: scale(1);
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.modal-content {
    padding: 30px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

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

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

.quote-estimate {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.quote-estimate h4 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.estimate-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.estimate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.estimate-item.total {
    border-top: 2px solid #3b82f6;
    margin-top: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #3b82f6;
}

.estimate-note {
    margin-top: 15px;
    font-size: 12px;
    color: #64748b;
    font-style: italic;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-secondary {
    flex: 1;
    padding: 12px 24px;
    background: #f1f5f9;
    color: #475569;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

/* Responsive Design for Interactive Features */
@media (max-width: 768px) {
    .live-chat-widget {
        right: 20px;
        bottom: 80px;
    }
    
    .chat-window {
        width: 300px;
        height: 450px;
    }
    
    .quote-calculator-modal {
        width: 95%;
        margin: 20px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .chat-window {
        width: 280px;
        height: 400px;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Footer Styles */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo .logo i {
    font-size: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3b82f6;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fbbf24;
}

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

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

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

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.contact-info i {
    color: #fbbf24;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .products-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .products-hero h1 {
        font-size: 36px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 20px;
    }
    
    .spice-visual {
        height: 300px;
    }
    
    .spice-bowl img {
        width: 250px;
        height: 250px;
    }
    
    .spices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spice-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 100px 0 60px;
    }
    
    .products-hero h1 {
        font-size: 28px;
    }
    
    .spice-bowl img {
        width: 200px;
        height: 200px;
    }
    
    .spice-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .spices-grid {
        grid-template-columns: 1fr;
    }
    
    .spice-card {
        margin: 0 10px;
    }
}

/* News & Articles Section Styles */
.news-articles-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.news-articles-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    animation: pulse 6s ease-in-out infinite;
}

.news-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    align-items: start;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.featured-card {
    grid-column: 1;
    grid-row: 1 / 3;
    height: fit-content;
}

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

.featured-card .news-image {
    height: 350px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-color);
}

.news-meta i {
    color: var(--accent-color);
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-card .news-title {
    font-size: 24px;
}

.news-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.featured-card .news-excerpt {
    font-size: 16px;
}

.news-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.news-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

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

/* Gallery Section Styles */
.gallery-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    animation: pulse 8s ease-in-out infinite;
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item.large {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-item.medium {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item.small {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery-item.wide {
    grid-column: span 6;
    grid-row: span 1;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: white;
}

.gallery-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.gallery-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.gallery-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    opacity: 0.8;
}

.gallery-meta i {
    font-size: 10px;
}

.gallery-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.gallery-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-stats .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-stats .stat-icon i {
    font-size: 24px;
    color: white;
}

.gallery-stats .stat-content {
    text-align: left;
}

.gallery-stats .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.gallery-stats .stat-label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.gallery-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.gallery-cta {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.gallery-cta p {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 16px;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-media-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 15px;
    box-shadow: 
        0 10px 30px rgba(30, 58, 138, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 160px;
}

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

.social-media-btn:hover::before {
    left: 100%;
}

.social-media-btn i {
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-media-btn span {
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover effects */
.social-media-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(30, 58, 138, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #3b82f6 0%, var(--primary-color) 100%);
}

.social-media-btn:hover i {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.social-media-btn:hover span {
    transform: translateX(5px);
}

/* Active state */
.social-media-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(30, 58, 138, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Focus state for accessibility */
.social-media-btn:focus {
    outline: none;
    box-shadow: 
        0 10px 30px rgba(30, 58, 138, 0.3),
        0 0 0 3px rgba(30, 58, 138, 0.3);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

#lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    padding: 20px;
    background: white;
}

.lightbox-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.lightbox-info p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Share Modal Styles */
.share-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.share-modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: shareModalFadeIn 0.3s ease;
    overflow: hidden;
}

@keyframes shareModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.share-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.share-close {
    color: var(--text-color);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.share-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.share-options {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.share-option:hover {
    border-color: var(--primary-color);
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-option i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.share-option:nth-child(1) i { color: #1877F2; }
.share-option:nth-child(2) i { color: #1DA1F2; }
.share-option:nth-child(3) i { color: #0077B5; }
.share-option:nth-child(4) i { color: #25D366; }
.share-option:nth-child(5) i { color: #6366F1; }
.share-option:nth-child(6) i { color: #059669; }

.share-option:hover i {
    color: white !important;
}

/* Notification Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    animation: pulse 8s ease-in-out infinite;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Contact Information Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-link i {
    font-size: 12px;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-color);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-group input.error + .form-error,
.form-group select.error + .form-error,
.form-group textarea.error + .form-error {
    display: block;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: block;
}

.submit-btn.loading span {
    display: none;
}

/* Contact Stats */
.contact-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.contact-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-stats .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-stats .stat-icon i {
    font-size: 24px;
    color: white;
}

.contact-stats .stat-content {
    text-align: left;
}

.contact-stats .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-stats .stat-label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

/* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-section::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="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 80px 0 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column.company-info {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-logo .logo i {
    font-size: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3b82f6;
}

.company-description {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 30px;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 14px;
}

.contact-item i {
    width: 16px;
    color: var(--primary-color);
    font-size: 14px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links li a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links li a:hover::before {
    opacity: 1;
    left: 0;
}

.newsletter-social {
    max-width: 300px;
}

.newsletter-description {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.newsletter-signup {
    margin-bottom: 30px;
}

.newsletter-form {
    margin-bottom: 10px;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
}

.input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    outline: none;
}

.input-group input::placeholder {
    color: #94a3b8;
}

.newsletter-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--gradient-secondary);
    transform: scale(1.05);
}

.newsletter-note {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.social-media h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

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

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

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.social-link.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.social-link.instagram:hover {
    background: #E4405F;
    border-color: #E4405F;
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-link i {
    font-size: 16px;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

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

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

    .best-selling-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .featured-card {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .best-selling-footer {
        flex-direction: column;
        text-align: center;
    }

    .stats-summary {
        justify-content: center;
    }

    .news-footer {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(6, 150px);
    }

    .gallery-item.large {
        grid-column: span 4;
        grid-row: span 2;
    }

    .gallery-item.medium {
        grid-column: span 4;
        grid-row: span 2;
    }

    .gallery-item.small {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item.wide {
        grid-column: span 4;
        grid-row: span 1;
    }

    .gallery-stats {
        gap: 30px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-image-container {
        grid-template-columns: 1fr;
        transform: none;
    }

    .about-image-wrapper:nth-child(1),
    .about-image-wrapper:nth-child(3) {
        transform: none;
    }

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

    .best-selling-grid {
        grid-template-columns: 1fr;
    }

    .best-selling-footer {
        flex-direction: column;
        text-align: center;
    }

    .stats-summary {
        justify-content: center;
    }

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

    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .featured-card {
        grid-column: 1;
        grid-row: 1;
    }



    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
        gap: 15px;
    }

    .gallery-item.large,
    .gallery-item.medium,
    .gallery-item.small,
    .gallery-item.wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-stats {
        gap: 20px;
    }

    .gallery-stats .stat-item {
        padding: 15px 20px;
    }

    .gallery-stats .stat-icon {
        width: 40px;
        height: 40px;
    }

    .gallery-stats .stat-icon i {
        font-size: 20px;
    }

    .gallery-stats .stat-number {
        font-size: 20px;
    }

    .social-media-links {
        gap: 25px;
        margin-top: 35px;
    }

    .social-media-btn {
        padding: 16px 26px;
        min-width: 140px;
        font-size: 14px;
    }

    .social-media-btn i {
        font-size: 22px;
    }

    .social-media-btn span {
        font-size: 13px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-info {
        padding: 15px;
    }

    .lightbox-info h3 {
        font-size: 20px;
    }

    .lightbox-info p {
        font-size: 14px;
    }

    .share-modal-content {
        max-width: 90%;
        margin: 20px;
    }

    .share-header {
        padding: 20px 25px 15px;
    }

    .share-header h3 {
        font-size: 20px;
    }

    .share-options {
        padding: 25px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .share-option {
        padding: 12px 16px;
        font-size: 15px;
    }

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

    .contact-stats {
        gap: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }

    .footer-column.company-info {
        grid-column: 1 / -1;
        max-width: none;
    }

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

    .contact-form-container {
        padding: 25px;
    }

    .form-header h3 {
        font-size: 24px;
    }

    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .contact-icon i {
        font-size: 20px;
    }

    .contact-stats .stat-item {
        padding: 20px 25px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-stats .stat-icon {
        width: 40px;
        height: 40px;
    }

    .contact-stats .stat-icon i {
        font-size: 20px;
    }

    .contact-stats .stat-number {
        font-size: 20px;
    }

    .social-media-links {
        gap: 20px;
        margin-top: 30px;
    }

    .social-media-btn {
        padding: 14px 22px;
        min-width: 120px;
        font-size: 13px;
        gap: 12px;
    }

    .social-media-btn i {
        font-size: 20px;
    }

    .social-media-btn span {
        font-size: 12px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 30px;
    }

    .footer-column.company-info {
        grid-column: 1;
        text-align: center;
    }

    .footer-logo .logo {
        justify-content: center;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 200px;
    height: 60px;
    background: linear-gradient(135deg, #25d36573 0%, #128c7e77 100%);
    border-radius: 20px;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    padding: 0 18px;
    transform: translateY(0);
}

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

.whatsapp-button:hover::before {
    left: 100%;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(37, 211, 102, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-button-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.whatsapp-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-icon i {
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-button:hover .whatsapp-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.whatsapp-button:hover .whatsapp-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.whatsapp-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.whatsapp-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover .whatsapp-label {
    transform: translateX(3px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.whatsapp-button:hover .whatsapp-subtitle {
    transform: translateX(3px);
    color: rgba(255, 255, 255, 1);
}

.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s infinite ease-in-out;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Active state */
.whatsapp-button:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Focus state for accessibility */
.whatsapp-button:focus {
    outline: none;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        0 0 0 3px rgba(37, 211, 102, 0.3);
}

/* Responsive Design for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 20px;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-button-content {
        gap: 0;
        justify-content: center;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        margin: 0;
    }
    
    .whatsapp-icon i {
        font-size: 24px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-pulse {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        border-radius: 20px;
    }
    
    .whatsapp-icon {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-icon i {
        font-size: 22px;
    }
    
    .whatsapp-pulse {
        border-radius: 20px;
    }
}

/* Animation for button appearance */
@keyframes whatsappSlideIn {
    from {
        transform: translateX(100%) translateY(0);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

.whatsapp-button {
    animation: whatsappSlideIn 0.6s ease-out;
}

/* Ensure button doesn't interfere with other elements */
@media (max-width: 1024px) {
    .back-to-top {
        bottom: 100px;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 80px;
    }
}

/* --- Unified Full-Width Slim CTA Section (Centered) --- */
.cta-section.unified-cta {
    position: relative;
    background: linear-gradient(120deg, #f8fafc 60%, #fbbf24 100%);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.10), 0 1.5px 8px rgba(30, 58, 138, 0.04);
    overflow: hidden;
    margin: 40px auto 0 auto;
    padding: 48px 32px 48px 32px;
    max-width: 900px;
    z-index: 1;
}
.cta-section.unified-cta .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cta-section.unified-cta .cta-text h3 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.cta-section.unified-cta .cta-text p {
    color: #334155;
    font-size: 1.15rem;
    margin-bottom: 28px;
    font-weight: 500;
}
.cta-section.unified-cta .cta-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-section.unified-cta .btn-hero-primary {
    font-size: 1.1rem;
    padding: 16px 38px;
    border-radius: 40px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.10);
}
.cta-section.unified-cta .btn-hero-primary i {
    font-size: 20px;
}
.cta-section.unified-cta .btn-hero-primary span {
    font-size: 1.1rem;
    font-weight: 600;
}
.cta-section.unified-cta .btn-hero-primary:hover {
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.18);
}
.cta-section.unified-cta .cta-svg-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    background: url('data:image/svg+xml;utf8,<svg width="900" height="180" viewBox="0 0 900 180" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="150" cy="90" rx="120" ry="60" fill="%23fbbf2433"/><ellipse cx="750" cy="120" rx="90" ry="40" fill="%23f59e0b22"/><ellipse cx="450" cy="60" rx="180" ry="40" fill="%2306b6d422"/></svg>') center/cover no-repeat;
    opacity: 0.35;
}
@media (max-width: 700px) {
    .cta-section.unified-cta {
        padding: 32px 10px 32px 10px;
    }
    .cta-section.unified-cta .cta-text h3 {
        font-size: 1.3rem;
    }
    .cta-section.unified-cta .cta-text p {
        font-size: 1rem;
    }
}

/* Full-width, Slim, Modern Unified CTA Section with SVG Background */
.cta-section.unified-cta {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(251, 191, 36, 0.08), 0 1.5px 8px rgba(30, 58, 138, 0.04);
    overflow: hidden;
    padding: 32px 0 32px 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.cta-section.unified-cta .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 48px;
    text-align: left;
}
.cta-section.unified-cta .cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.cta-section.unified-cta .cta-text p {
    color: #334155;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
}
.cta-section.unified-cta .cta-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cta-section.unified-cta .btn-hero-primary {
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: 32px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.10);
}
.cta-section.unified-cta .btn-hero-primary i {
    font-size: 18px;
}
.cta-section.unified-cta .btn-hero-primary span {
    font-size: 1rem;
    font-weight: 600;
}
.cta-section.unified-cta .btn-hero-primary:hover {
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.18);
}
.cta-section.unified-cta .cta-svg-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    background: url('data:image/svg+xml;utf8,<svg width="1600" height="90" viewBox="0 0 1600 90" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="200" cy="45" rx="180" ry="30" fill="%23fff7ed"/><ellipse cx="1400" cy="60" rx="120" ry="20" fill="%23fde68a"/><ellipse cx="800" cy="30" rx="300" ry="25" fill="%23fef3c7"/></svg>') center/cover no-repeat;
    opacity: 0.45;
}
@media (max-width: 900px) {
    .cta-section.unified-cta .cta-content {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    .cta-section.unified-cta {
        padding: 24px 0 24px 0;
        min-height: 80px;
    }
}

/* --- Unified Full-Width Slim CTA Section --- */
.cta-section.unified-cta {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(251, 191, 36, 0.08), 0 1.5px 8px rgba(30, 58, 138, 0.04);
    overflow: hidden;
    padding: 0;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.cta-section.unified-cta .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 18px 32px;
    gap: 32px;
    text-align: left;
}
.cta-section.unified-cta .cta-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
    letter-spacing: 0.2px;
}
.cta-section.unified-cta .cta-text p {
    color: #334155;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    text-shadow: none !important;
}
.cta-section.unified-cta .cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.cta-section.unified-cta .btn-hero-primary {
    font-size: 1rem;
    padding: 10px 28px;
    border-radius: 32px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.10);
}
.cta-section.unified-cta .btn-hero-primary i {
    font-size: 18px;
}
.cta-section.unified-cta .btn-hero-primary span {
    font-size: 1rem;
    font-weight: 600;
}
.cta-section.unified-cta .btn-hero-primary:hover {
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.18);
}
.cta-section.unified-cta .cta-svg-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    background: url('data:image/svg+xml;utf8,<svg width="1600" height="72" viewBox="0 0 1600 72" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="200" cy="36" rx="180" ry="18" fill="%23fff7ed"/><ellipse cx="1400" cy="48" rx="120" ry="12" fill="%23fde68a"/><ellipse cx="800" cy="24" rx="300" ry="10" fill="%23fef3c7"/></svg>') center/cover no-repeat;
    opacity: 0.35;
}
@media (max-width: 900px) {
    .cta-section.unified-cta .cta-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
        padding: 14px 8px;
    }
    .cta-section.unified-cta {
        min-height: 64px;
    }
}

/* --- Unified Full-Width Slim CTA Section (Centered) --- */
.cta-section.unified-cta {
    /* position: relative; */
    /* width: 100%; */
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(251, 191, 36, 0.08), 0 1.5px 8px rgba(30, 58, 138, 0.04);
    overflow: hidden;
    padding: 0;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.cta-section.unified-cta .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 20px;
    gap: 32px;
    text-align: left;
}
.cta-section.unified-cta .cta-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
    letter-spacing: 0.2px;
}
.cta-section.unified-cta .cta-text p {
    color: #334155;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    text-shadow: none !important;
}
.cta-section.unified-cta .cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.cta-section.unified-cta .btn-hero-primary {
    font-size: 1rem;
    padding: 10px 28px;
    border-radius: 32px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.10);
}
.cta-section.unified-cta .btn-hero-primary i {
    font-size: 18px;
}
.cta-section.unified-cta .btn-hero-primary span {
    font-size: 1rem;
    font-weight: 600;
}
.cta-section.unified-cta .btn-hero-primary:hover {
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.18);
}
.cta-section.unified-cta .cta-svg-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    background: url('data:image/svg+xml;utf8,<svg width="1600" height="72" viewBox="0 0 1600 72" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="200" cy="36" rx="180" ry="18" fill="%23fff7ed"/><ellipse cx="1400" cy="48" rx="120" ry="12" fill="%23fde68a"/><ellipse cx="800" cy="24" rx="300" ry="10" fill="%23fef3c7"/></svg>') center/cover no-repeat;
    opacity: 0.35;
}
@media (max-width: 900px) {
    .cta-section.unified-cta .cta-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
        padding: 14px 8px;
    }
    .cta-section.unified-cta {
        min-height: 64px;
    }
}

/* Modern Slim CTA - Unique Design */
.modern-slim-cta {
    width: 100%;
    background: linear-gradient(90deg, #f8fafc 60%, #fbbf24 100%);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(251, 191, 36, 0.10), 0 1.5px 8px rgba(30, 58, 138, 0.04);
    padding: 0;
    margin: 36px 0 0 0;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #fbbf24;
    transition: box-shadow 0.2s;
}
.modern-slim-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="600" height="64" viewBox="0 0 600 64" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="100" cy="32" rx="80" ry="10" fill="%23fbbf2433"/><ellipse cx="500" cy="40" rx="60" ry="8" fill="%23f59e0b22"/><ellipse cx="300" cy="20" rx="120" ry="7" fill="%2306b6d422"/></svg>') center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}
.modern-slim-cta__content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    position: relative;
    z-index: 2;
    gap: 32px;
}
.modern-slim-cta__text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
    letter-spacing: 0.2px;
}
.modern-slim-cta__text p {
    color: #334155;
    font-size: 0.98rem;
    margin-bottom: 0;
    font-weight: 500;
}
.modern-slim-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.7);
    color: #f59e0b;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 32px;
    padding: 10px 28px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.10);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    position: relative;
    z-index: 2;
}
.modern-slim-cta__btn i {
    font-size: 18px;
    color: #fbbf24;
    transition: transform 0.2s;
}
.modern-slim-cta__btn:hover {
    background: #fbbf24;
    color: #fff;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.18);
}
.modern-slim-cta__btn:hover i {
    color: #fff;
    transform: scale(1.15) rotate(-8deg);
}
@media (max-width: 700px) {
    .modern-slim-cta__content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        align-items: center;
        padding: 12px 8px;
    }
    .modern-slim-cta {
        min-height: 56px;
    }
}