/* style.css */

:root {
    /* Light Pastel Professional Theme */
    --bg-color: #f8fafc;
    --text-color: #1e293b;
    --text-muted: #64748b;
    
    /* Soft Pastel Primary and Secondary */
    --primary-color: #6366f1; /* Indigo */
    --primary-light: #e0e7ff;
    --secondary-color: #a855f7; /* Purple */
    --accent-color: #38bdf8; /* Sky Blue */
    
    /* Glass Morphism Variables for Light Theme */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --glass-shadow-hover: 0 20px 40px -10px rgba(99, 102, 241, 0.2);
    
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Background Pastel Blobs */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #f8fafc;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: float 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.25);
    top: -150px;
    left: -150px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.2);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: rgba(56, 189, 248, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -12s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(50px, -50px) scale(1.1) rotate(10deg); }
    66% { transform: translate(-30px, 40px) scale(0.9) rotate(-5deg); }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

/* Reveal Animations on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    z-index: -1;
    transition: var(--transition-fast);
    opacity: 0;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px -5px rgba(99, 102, 241, 0.5);
}

.btn-primary:hover .animate-arrow {
    transform: translateX(4px);
}

.animate-arrow {
    transition: var(--transition-fast);
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Navbar - Ultra Clear Liquid Glass (90% clear) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s ease;
}

.navbar.scrolled .nav-container {
    padding: 12px 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Sections General */
section {
    padding: 120px 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #64748b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Redesigned Advanced Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.1);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

.animated-text {
    transition: opacity 0.3s ease;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    font-weight: 400;
    max-width: 650px;
}

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

/* Holographic Tech Hub Styling */
.hero-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.holo-hub-wrapper {
    perspective: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.holo-hub {
    position: relative;
    width: 380px;
    height: 380px;
    transform-style: preserve-3d;
    transform: rotateX(45deg) rotateY(-15deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.holo-sphere {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, var(--primary-color), var(--secondary-color));
    box-shadow: 
        0 0 30px rgba(99, 102, 241, 0.6), 
        inset 0 0 15px rgba(255, 255, 255, 0.4);
    animation: pulseSphere 3s infinite alternate ease-in-out;
    z-index: 2;
}

.holo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.25);
    transform-style: preserve-3d;
}

.holo-ring-1 {
    width: 180px;
    height: 180px;
    border-color: rgba(99, 102, 241, 0.4);
    animation: rotateRing 12s infinite linear;
}

.holo-ring-2 {
    width: 270px;
    height: 270px;
    border-color: rgba(168, 85, 247, 0.3);
    animation: rotateRingReverse 18s infinite linear;
}

.holo-ring-3 {
    width: 360px;
    height: 360px;
    border-color: rgba(56, 189, 248, 0.2);
    border-style: dotted;
    animation: rotateRing 24s infinite linear;
}

.holo-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    transform: translateZ(10px);
}

.holo-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 
        0 10px 25px -5px rgba(0,0,0,0.06), 
        0 0 15px rgba(99, 102, 241, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    animation: floatNode 6s infinite ease-in-out;
    transform-style: preserve-3d;
}

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

.node-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.node-2 {
    top: 35%;
    right: 5%;
    animation-delay: -2s;
}

.node-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: -4s;
}

/* Animations for Holographic Hub */
@keyframes pulseSphere {
    0% { transform: scale(1) translateZ(20px); }
    100% { transform: scale(1.15) translateZ(40px); }
}

@keyframes rotateRing {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

@keyframes rotateRingReverse {
    0% { transform: rotateZ(360deg); }
    100% { transform: rotateZ(0deg); }
}

@keyframes floatNode {
    0% { transform: translateY(0) translateZ(30px); }
    50% { transform: translateY(-15px) translateZ(40px); }
    100% { transform: translateY(0) translateZ(30px); }
}

/* Fade in up styles for load animation */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* About / Solutions Section - 3D Carousel */
.about {
    overflow: hidden;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 480px;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    position: absolute;
    width: 340px;
    height: 420px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 0;
}

/* Card States applied by JS (Wider Gaps) */
.glass-card.active {
    opacity: 1;
    transform: translateX(0) scale(1.1);
    z-index: 3;
    pointer-events: auto;
    box-shadow: var(--glass-shadow-hover);
    border: 1px solid rgba(255, 255, 255, 1);
}

.glass-card.prev {
    opacity: 0.6;
    transform: translateX(-110%) scale(0.85);
    z-index: 2;
    filter: blur(3px);
}

.glass-card.next {
    opacity: 0.6;
    transform: translateX(110%) scale(0.85);
    z-index: 2;
    filter: blur(3px);
}

.card-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), #fff);
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.15);
}

.glass-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.glass-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
    border-radius: 16px;
    transition: var(--transition-fast);
    background: transparent;
}

.info-item.hover-lift:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--text-color);
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 14px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.input-group textarea {
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.input-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #94a3b8;
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 0.8rem;
    padding: 0 6px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Modern Diverse Footer */
.modern-footer {
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8));
    padding: 80px 30px 30px;
    border-top: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0 20px;
    max-width: 300px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 35px;
}

.footer-brand span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-services a {
    color: var(--text-muted);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    background: #fff;
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    background: transparent;
    outline: none;
    color: var(--text-color);
    font-family: inherit;
}

.newsletter-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.developer-credit-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.dev-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

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

.dev-name {
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-text-side {
        align-items: center;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-container {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .glass-card {
        width: 300px;
        height: 380px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        max-height: 300px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 10px 0;
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; }
    
    .holo-hub {
        width: 300px;
        height: 300px;
    }
    .holo-ring-1 { width: 140px; height: 140px; }
    .holo-ring-2 { width: 210px; height: 210px; }
    .holo-ring-3 { width: 280px; height: 280px; }
    .holo-node { font-size: 0.8rem; padding: 8px 12px; }
    
    .glass-card {
        width: 260px;
        height: 350px;
        padding: 30px 20px;
    }
    
    /* Responsive carousel gap adjustment */
    .glass-card.prev { transform: translateX(-80%) scale(0.85); }
    .glass-card.next { transform: translateX(80%) scale(0.85); }
    
    section { padding: 100px 20px; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
