/* CSS Design System - Idealfrio (Ice & Steel Theme) */

:root {
    --bg-primary: #0a192f;
    --bg-secondary: #0f223d;
    --bg-tertiary: #172a45;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --accent-cyan: #00f2fe;
    --accent-cyan-glow: rgba(0, 242, 254, 0.4);
    --accent-blue: #0072ff;
    --accent-blue-hover: #0056c6;
    --glass-bg: rgba(15, 34, 61, 0.75);
    --glass-border: rgba(0, 242, 254, 0.15);
    --card-shadow: 0 20px 40px -15px rgba(2, 6, 12, 0.7);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Section Common Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.section-title {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
}

.paragraph {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

/* Custom Icons */
.icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.icon-social {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: var(--transition-smooth);
}

.icon-social:hover {
    fill: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-cyan-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.6);
}

.btn-secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* Topbar */
.topbar {
    background-color: #040d1a;
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 24px;
}

.topbar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-socials {
    display: flex;
    gap: 16px;
}

/* Header */
.header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 8px var(--accent-cyan-glow));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.brand-name .highlight {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    transition: var(--transition-smooth);
}

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

.btn-nav {
    padding: 10px 20px;
}

/* Menu Toggle (Burger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 550px;
    overflow: hidden;
}

.slides-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    max-width: 700px;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.2s;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 114, 255, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--accent-cyan);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.slide-desc {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
}

.slide-actions {
    display: flex;
    gap: 16px;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(15, 34, 61, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan-glow);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-arrow.prev {
    left: 24px;
}

.slider-arrow.next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--accent-cyan);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--accent-cyan);
}

/* Highlights Section */
.section-highlights {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.highlight-card {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    opacity: 0;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 242, 254, 0.15);
}

.highlight-card:hover::before {
    opacity: 1;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: rgba(0, 114, 255, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.highlight-card:hover .card-icon-wrapper {
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--accent-cyan-glow);
}

.card-icon {
    width: 32px;
    height: 32px;
}

.card-title {
    font-size: 19px;
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* About Us Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-side {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Abstract visual graphic simulating high-tech refrigeration chamber */
.glass-visual {
    background: linear-gradient(135deg, rgba(23, 42, 69, 0.8) 0%, rgba(15, 34, 61, 0.9) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    height: 85%;
    position: relative;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.glass-visual::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.visual-badge {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    align-self: flex-start;
    margin-bottom: 24px;
}

.visual-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.visual-text {
    color: var(--text-secondary);
    font-size: 15px;
    position: relative;
    z-index: 2;
}

.visual-decor {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(0, 242, 254, 0.2);
    border-radius: 50%;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.feature-bullet {
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 5px var(--accent-cyan);
}

/* Services Section */
.section-services {
    background-color: var(--bg-secondary);
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 28px;
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px var(--accent-cyan-glow);
}

/* Tab Panels */
.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.panel-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    background-color: var(--bg-tertiary);
    padding: 45px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: var(--card-shadow);
}

.panel-info {
    display: flex;
    flex-direction: column;
}

.panel-title {
    font-size: 26px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panel-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.panel-list {
    list-style: none;
    margin-bottom: 32px;
}

.panel-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.panel-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

.panel-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Custom Decor Box inside tab panel 3 */
.panel-wrapper-decor {
    display: flex;
    align-items: center;
    justify-content: center;
}

.decor-box {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.1) 0%, rgba(0, 242, 254, 0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.decor-box h4 {
    color: var(--accent-cyan);
    font-size: 22px;
    margin-bottom: 16px;
}

.decor-box p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, #09172c 0%, #030a14 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.section-cta h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 20px;
}

.section-cta p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 35px;
}

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

.icon-btn {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Clients Gallery */
.section-clients {
    background-color: var(--bg-primary);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.client-logo-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.02);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.client-logo-card:hover {
    border-color: var(--accent-cyan);
    background-color: var(--bg-tertiary);
    transform: translateY(-4px);
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.client-logo-card:hover .logo-name {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px var(--accent-cyan-glow);
}

/* Contact Section */
.section-contact {
    background-color: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon {
    width: 24px;
    height: 24px;
}

.method-item h4 {
    font-size: 15px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.method-item p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.direct-contact-action {
    background-color: var(--bg-tertiary);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.direct-contact-action p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

/* Form Styling */
.contact-form-side {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.form-container h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-container p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
    background-color: var(--bg-primary);
}

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

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

.form-group.invalid .error-msg {
    display: block;
}

/* Spinner inside button */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Modal Styling */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 12, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.show {
    display: flex;
    opacity: 1;
}

.success-modal {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: var(--card-shadow);
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-backdrop.show .success-modal {
    transform: scale(1);
}

.success-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 242, 254, 0.1);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    filter: drop-shadow(0 0 10px var(--accent-cyan-glow));
}

.success-icon {
    width: 42px;
    height: 42px;
}

.success-modal h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.success-modal p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 28px;
}

/* Footer Area */
.footer-area {
    background-color: #040c17;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-grid h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 8px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-cyan);
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 4px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

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

.bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.creator-tag {
    font-style: italic;
    color: var(--accent-cyan);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-side {
        height: 380px;
    }
    
    .panel-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .panel-image {
        order: -1;
    }
    
    .panel-img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .topbar {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 99;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 20px;
    }
    
    .btn-nav {
        width: 100%;
        max-width: 250px;
    }
    
    /* Animation for burger button */
    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-slider {
        height: calc(100vh - 73px);
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-side {
        padding: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .bottom-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
