/* --- 1. GLOBAL RESET & BASE --- */
:root {
    --bg-dark: #0f172a; 
    --accent-blue: #3b82f6;
    --text-main: #334155;
    --nav-height: 85px;
}

/* Dark Mode Variables */
:root.dark-mode {
    --bg-dark: #0f172a;
    --text-main: #e2e8f0;
    --bg-light: #1e293b;
    --bg-lighter: #334155;
    --border-color: #475569;
}

/* Dark Mode Styles */
:root.dark-mode body {
    background-color: #1a1f2e;
    color: #e2e8f0;
}

:root.dark-mode .navbar {
    background: rgba(30, 41, 59, 0.95);
    border-bottom-color: #334155;
}

:root.dark-mode .logo {
    color: #ffffff;
}

:root.dark-mode .nav-links a {
    color: #cbd5e1;
}

:root.dark-mode .nav-links a:hover,
:root.dark-mode .nav-links a.active-link {
    color: var(--accent-blue);
    background-color: rgba(59, 130, 246, 0.2);
}

:root.dark-mode .current-lang,
:root.dark-mode .theme-icon {
    border-color: #475569;
    color: #cbd5e1;
}

:root.dark-mode .current-lang:hover,
:root.dark-mode .theme-icon:hover {
    background: #1e293b;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

:root.dark-mode .lang-options,
:root.dark-mode .theme-options {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

:root.dark-mode .lang-option,
:root.dark-mode .theme-option {
    color: #cbd5e1;
    border-bottom-color: #334155;
}

:root.dark-mode .lang-option:hover,
:root.dark-mode .theme-option:hover {
    background: #334155;
    color: var(--accent-blue);
}

:root.dark-mode .lang-option.active,
:root.dark-mode .theme-option.active {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-blue);
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
    display: none;
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* Global heading styles */
h1 {
    margin-top: 95px;
}

h2 {
    color: rgba(0, 0, 0, 1);
}

h3 {
    color: rgba(0, 0, 0, 1);
    vertical-align: middle;
}

/* --- 2. NAVIGATION --- */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000; height: var(--nav-height);
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f5f9; display: flex; align-items: center;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

/* Header Right Controls */
.header-right-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
    position: relative;
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.theme-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    user-select: none;
}
.theme-icon:hover {
    background: #f8fafc;
    border-color: var(--accent-blue);
    transform: scale(1.05);
}
.theme-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1001;
}
.theme-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.theme-option {
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #334155;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
}
.theme-option:last-child {
    border-bottom: none;
}
.theme-option:hover {
    background: #f8fafc;
    color: var(--accent-blue);
}
.theme-option.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}
.theme-option-icon {
    font-size: 16px;
    display: inline-block;
}

/* Language Selector */
.lang-selector {
    position: relative;
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.lang-dropdown {
    position: relative;
    display: inline-block;
}
.current-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #64748b;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}
.current-lang:hover {
    background: #f8fafc;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}
.current-lang:active {
    transform: scale(0.98);
}
.current-lang::after {
    content: '▼';
    font-size: 9px;
    color: #64748b;
    transition: transform 0.3s ease;
    margin-left: 4px;
}
.current-lang:hover::after {
    color: var(--accent-blue);
}
.lang-dropdown.active .current-lang::after,
.current-lang:hover::after {
    transform: rotate(180deg);
}
.lang-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}
.lang-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-option {
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #334155;
    transition: all 0.2s ease;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
}
.lang-option:last-child {
    border-bottom: none;
}
.lang-option:hover {
    background: #f8fafc;
    color: var(--accent-blue);
}
.lang-option.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}
.navbar-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 40px; }
.logo { font-size: 28px; font-weight: 800; text-decoration: none; color: #000; text-transform: lowercase; }
.logo span { color: var(--accent-blue); }
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; margin-left: 40px; }
.nav-links a { 
    text-decoration: none; 
    color: #64748b; 
    font-weight: 600; 
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav-links a:hover {
    color: var(--accent-blue);
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}
.nav-links a.active-link { 
    color: var(--accent-blue) !important;
    background-color: rgba(59, 130, 246, 0.1);
}

/* --- 3. FULL WIDTH DARK HERO --- */
.index-hero { 
    background: var(--bg-dark); 
    width: 100%; 
    margin: var(--nav-height) 0 0;
    padding: 20px 0;
    color: white; 
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: visible;
}
.index-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(15, 23, 42, 0.9) 100%);
    pointer-events: none;
}
.index-hero > * {
    position: relative;
    z-index: 1;
}
.index-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    padding: 0;
}
.index-hero h1 {
    margin: 0 auto;
    width: 892px;
    height: 65px;
    font-size: 48px;
    text-align: center;
    line-height: 65px;
    color: white !important;
    white-space: nowrap;
}
.hero-laptop-image {
    width: auto;
    height: 700px;
    min-width: 700px;
    object-fit: contain;
    flex-shrink: 0;
}
.hero-content h1 { 
    font-size: 52px; 
    font-weight: 800; 
    margin-bottom: 9px; 
    margin-top: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 73px;
    white-space: nowrap;
}
.hero-content p { font-size: 18px; margin-bottom: 50px; opacity: 0.8; }

.hero-image-wrap { 
    width: 100%; 
    display: flex; 
    justify-content: center; 
    line-height: 0; /* Removes gap under image */
}
.hero-image-wrap img { 
    max-width: 950px; 
    width: auto;
    height: auto; 
    object-fit: contain;
    display: block;
}

/* --- 4. STATS BANNER SECTION --- */
.stats-banner-section {
    background: linear-gradient(135deg, #5831f1 0%, #3b82f6 100%);
    padding: 100px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.stats-banner-section .container {
    position: relative;
    z-index: 1;
}
.stats-banner-headline {
    font-size: 42px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.stat-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}
.stat-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.stat-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stat-percentage {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.stat-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    opacity: 0.95;
}
.stats-banner-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}
.contact-icon-link {
    display: block;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.contact-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* --- 5. POTENTIAL SECTION --- */
.potential-section {
    padding: 100px 0;
    background: #fff;
}
.potential-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.potential-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.potential-graphic {
    width: 100%;
    max-width: 400px;
    background: #5831f1;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.potential-graphic img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
}
.potential-content {
    flex: 1;
    max-width: 600px;
}
.potential-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    color: rgba(0, 0, 0, 1);
    line-height: 1.2;
}
.potential-subheading {
    font-size: 20px;
    font-weight: 700;
    color: #5831f1;
    margin-bottom: 20px;
}
.potential-content p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.potential-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin-bottom: 30px;
    line-height: 1.8;
    letter-spacing: 0.2px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.6;
    letter-spacing: 0.3px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.feature-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: var(--accent-blue);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
}
.feature-item:hover .checkmark {
    transform: scale(1.1);
    filter: brightness(1.1);
}
.feature-item span:last-child {
    transition: color 0.3s ease;
}
.checkmark {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
    flex-shrink: 0;
}
.btn-read-more {
    display: inline-block;
    padding: 16px 40px;
    background-color: #000;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-read-more:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Dark Mode for Potential Section */
:root.dark-mode .potential-section {
    background: #1a1f2e;
}
:root.dark-mode .potential-content h2 {
    color: #e2e8f0;
}
:root.dark-mode .potential-content p {
    color: #cbd5e1;
}
:root.dark-mode .feature-item {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}
:root.dark-mode .feature-item:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* --- 6. WHY PARTNER (CENTERED) --- */
.why-partner { padding: 100px 0; background: #fff; text-align: center; }
.partner-content h2 { 
    font-size: 36px; 
    font-weight: 800; 
    margin-bottom: 20px; 
    color: rgba(0, 0, 0, 1);
}
[dir="rtl"] .partner-content h2 {
    direction: rtl;
    text-align: center;
}
[dir="ltr"] .partner-content h2 {
    direction: ltr;
    text-align: center;
}
.partner-content p { font-size: 18px; max-width: 800px; margin: 0 auto 40px; color: rgba(0, 0, 0, 1); }
.partner-image img { width: 100%; max-width: 320px; }

/* Dark Mode for Why Partner */
:root.dark-mode .why-partner {
    background: #1a1f2e;
}
:root.dark-mode .partner-content h2 {
    color: #e2e8f0;
}
:root.dark-mode .partner-content p {
    color: #cbd5e1;
}

/* --- 7. SERVICES GRID & BUTTON --- */
.services-section { padding: 100px 0; background: #f8fafc; text-align: center; }
.services-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    margin-top: 50px;
    margin-bottom: 50px; 
}
.service-card { 
    background: white; border-radius: 16px; padding: 20px 15px; 
    border: 1px solid #eee; display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.service-card:hover {
    border: 2px solid var(--accent-blue);
}
.service-card img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 15px; }
.service-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: rgba(0, 0, 0, 1); vertical-align: middle; }
.service-card p { 
    font-size: 13px; 
    color: rgba(100, 116, 139, 1); 
    line-height: 1.5; 
    margin: 0;
    text-align: center;
    font-weight: 400;
}

/* Dark Mode for Services Section */
:root.dark-mode .services-section {
    background: #1a1f2e;
}
:root.dark-mode .services-section h2 {
    color: #e2e8f0;
}
:root.dark-mode .service-card {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
:root.dark-mode .service-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}
:root.dark-mode .service-card h3 {
    color: #e2e8f0;
}
:root.dark-mode .service-card p {
    color: #94a3b8;
}

/* The Button to Services Page */
.btn-container { margin-top: 20px; }
.btn-view-all {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--accent-blue);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-view-all:hover {
    background-color: #856ddd;
    border-radius: 8px;
}


/* Create Website Modal */
.create-website-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}
.modal-close:hover {
    color: #1e293b;
}
.modal-body {
    margin-top: 10px;
}
.modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 30px 0;
    text-align: center;
}
.upload-box {
    display: flex;
    align-items: stretch;
    gap: 15px;
    flex-wrap: wrap;
}
.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 50px;
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
    justify-content: center;
    min-height: 151px;
}
.upload-label:hover {
    background-color: #f1f5f9;
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.upload-icon {
    font-size: 48px;
}
.upload-text {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}
.btn-create-new-file {
    padding: 40px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    min-height: 151px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 250px;
}
.btn-create-new-file:hover {
    background-color: #f1f5f9;
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Folder Name Modal */
.folder-name-modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}
.folder-name-modal-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}
.folder-name-modal-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 10px 0;
}
.folder-name-modal-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 20px 0;
}
.folder-name-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    background-color: #fafbfc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}
.folder-name-input:focus {
    background-color: white;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.folder-name-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}
.btn-modal-cancel,
.btn-modal-create {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-modal-cancel {
    background-color: #f8fafc;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}
.btn-modal-cancel:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}
.btn-modal-create {
    background-color: var(--accent-blue);
    color: white;
}
.btn-modal-create:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Folder Editor Modal (Canva-like) */
.folder-editor-modal {
    display: none;
    position: fixed;
    z-index: 4000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}
.editor-workspace {
    display: flex;
    height: 100vh;
    width: 100%;
}
.editor-main-full {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
}
.editor-header-bar {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    gap: 20px;
}
.editor-logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: #000;
    text-transform: lowercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
}
.editor-logo span {
    color: var(--accent-blue);
}
.editor-nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}
.editor-nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}
.editor-nav-links a:hover {
    color: var(--accent-blue);
    background-color: rgba(59, 130, 246, 0.1);
}
.editor-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}
.editor-lang-selector .current-lang {
    border: 2px solid #e2e8f0;
    background: #ffffff;
}
.editor-lang-selector .current-lang:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.editor-lang-selector .current-lang:hover::after {
    color: #ffffff;
}
.editor-lang-selector .current-lang:hover::after {
    color: #ffffff;
}
.folder-editor-modal.minimized {
    width: 600px;
    height: 400px;
    max-width: 90vw;
    max-height: 80vh;
    left: auto;
    right: 20px;
    bottom: 20px;
    top: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #e2e8f0;
}
.folder-editor-modal.minimized .editor-workspace {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.folder-editor-modal.minimized .editor-header-bar {
    cursor: move;
}
.editor-content-area {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 0;
}
/* Left Sidebar */
.editor-left-sidebar {
    width: 280px;
    background-color: #1e293b;
    border-right: 1px solid #334155;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 8px;
}
.sidebar-nav-item {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #94a3b8;
    border-left: 3px solid transparent;
    width: 100%;
    text-align: center;
}
.sidebar-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}
.sidebar-nav-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-blue);
    color: #ffffff;
}
.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid currentColor;
    border-radius: 8px;
    color: inherit;
    transition: all 0.3s ease;
}
.sidebar-nav-item.active .nav-icon {
    border-color: var(--accent-blue);
    background-color: rgba(59, 130, 246, 0.1);
}
.nav-label {
    font-size: 14px;
    font-weight: 600;
    color: inherit;
    text-transform: capitalize;
}
.sidebar-content-area {
    flex: 1;
    background-color: #0f172a;
    overflow-y: auto;
    padding: 20px;
}
.sidebar-tab-content {
    display: none;
}
.sidebar-tab-content.active {
    display: block;
}
.editor-text-input {
    width: 100%;
    min-height: 300px;
    padding: 15px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
}
.editor-text-input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.editor-text-input::placeholder {
    color: #64748b;
}
.editor-upload-label-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    background-color: #1e293b;
    border: 2px dashed #475569;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.editor-upload-label-sidebar:hover {
    background-color: #334155;
    border-color: var(--accent-blue);
}
.editor-upload-label-sidebar .upload-icon {
    font-size: 32px;
}
.editor-upload-label-sidebar .upload-text {
    font-size: 14px;
    color: #94a3b8;
}
.uploads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 15px;
}
.uploaded-file-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #334155;
    background-color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 100px;
    justify-content: center;
}
.uploaded-file-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    background-color: #334155;
}
.file-item-icon {
    font-size: 32px;
}
.file-item-name {
    font-size: 11px;
    font-weight: 600;
    color: #e2e8f0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.canvas-code-viewer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.canvas-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}
.canvas-code-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}
.btn-copy-code-content {
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-copy-code-content:hover {
    background: #2563eb;
    transform: scale(1.05);
}
.canvas-code-content {
    flex: 1;
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    overflow: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.canvas-code-content code {
    color: inherit;
    background: transparent;
    padding: 0;
}
.uploaded-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #334155;
    background-color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
}
.uploaded-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.uploaded-item.selected {
    border-color: var(--accent-blue);
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.uploaded-item-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #0f172a;
}
.uploaded-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.uploaded-item-name {
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #1e293b;
}
.remove-upload {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}
.remove-upload:hover {
    background-color: #dc2626;
    transform: scale(1.1);
}
.canvas-image-editor {
    width: 100%;
}
.canvas-image-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}
.canvas-image-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}
.canvas-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}
.canvas-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.canvas-style-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.style-control-group {
    display: flex;
    align-items: center;
    gap: 15px;
}
.style-control-group label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    min-width: 100px;
}
.style-control-group input[type="range"] {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
}
.style-control-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-blue);
    cursor: pointer;
    transition: all 0.2s ease;
}
.style-control-group input[type="range"]::-webkit-slider-thumb:hover {
    background: #2563eb;
    transform: scale(1.1);
}
.style-control-group input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-blue);
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}
.style-control-group input[type="range"]::-moz-range-thumb:hover {
    background: #2563eb;
    transform: scale(1.1);
}
.style-control-group span {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue);
    min-width: 60px;
    text-align: right;
}
/* Canvas/Editor Area */
.editor-canvas-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    overflow: hidden;
}
.canvas-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    background-color: #fafbfc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.canvas-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}
.btn-convert-to-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}
.btn-convert-to-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.btn-convert-to-code:active {
    transform: translateY(0);
}
.btn-convert-to-code:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.convert-icon {
    font-size: 18px;
}
.convert-text {
    white-space: nowrap;
}
.code-result-modal {
    display: none;
    position: fixed;
    z-index: 6000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}
.code-result-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
}
.code-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}
.code-result-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}
.code-result-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.code-result-close:hover {
    background-color: #f1f5f9;
    color: #1e293b;
}
.code-result-body {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}
.code-display {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
}
.code-result-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}
.btn-copy-code,
.btn-download-code {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-copy-code {
    background-color: var(--accent-blue);
    color: white;
}
.btn-copy-code:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.btn-download-code {
    background-color: #10b981;
    color: white;
}
.btn-download-code:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
/* AI Error Modal */
.ai-error-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.ai-error-content {
    background: #1e293b;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
    animation: modalFadeIn 0.3s ease;
}
.ai-error-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #334155;
    background: #0f172a;
}
.ai-error-title {
    font-size: 20px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0;
}
.ai-error-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1;
}
.ai-error-close:hover {
    background: #334155;
    color: #f1f5f9;
}
.ai-error-body {
    padding: 25px;
    flex: 1;
    overflow-y: auto;
}
.ai-error-message {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
    word-wrap: break-word;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}
.ai-error-actions {
    padding: 20px 25px;
    border-top: 1px solid #334155;
    background: #0f172a;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.btn-ok-error {
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}
.btn-ok-error:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}
.canvas-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background-color: #ffffff;
}
.canvas-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #94a3b8;
    font-size: 16px;
    text-align: center;
}
.canvas-preview {
    width: 100%;
    min-height: 400px;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.canvas-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.canvas-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
    display: block;
}
.file-content {
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    color: #1e293b;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
    line-height: 1.6;
}
.editor-upload-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.editor-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px;
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
    min-height: 150px;
}
.editor-upload-label:hover {
    background-color: #f1f5f9;
    border-color: var(--accent-blue);
}
.editor-upload-label .upload-text {
    font-size: 16px;
    color: #64748b;
}
.editor-uploaded-files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.editor-uploaded-file-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}
.editor-uploaded-file-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.remove-file {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: background-color 0.3s ease;
}
.remove-file:hover {
    background-color: rgba(220, 38, 38, 0.9);
}

/* Website Editor Modal */
.website-editor-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}
.editor-modal-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}
.editor-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}
.editor-modal-close:hover {
    color: #1e293b;
}
.editor-header {
    margin-bottom: 30px;
}
.editor-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}
.editor-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.editor-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.editor-label {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}
.website-editor-textarea {
    width: 100%;
    min-height: 300px;
    padding: 20px;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
}
.website-editor-textarea:focus {
    background-color: white;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.image-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
    min-height: 150px;
}
.image-upload-label:hover {
    background-color: #f1f5f9;
    border-color: var(--accent-blue);
}
.uploaded-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}
.uploaded-image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}
.uploaded-image-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: background-color 0.3s ease;
}
.remove-image:hover {
    background-color: rgba(220, 38, 38, 0.9);
}
.editor-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.btn-cancel,
.btn-save {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-cancel {
    background-color: #f8fafc;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}
.btn-cancel:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}
.btn-save {
    background-color: var(--accent-blue);
    color: white;
}
.btn-save:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* --- 8. POTENTIAL SECTION --- */
.potential-section {
    padding: 80px 0;
    background: #f1f5f9;
}
.potential-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.potential-content {
    flex: 1;
    max-width: 600px;
}
.potential-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 1);
}
.potential-content p {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.6;
}
.potential-section .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.potential-section .hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.potential-section .hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.btn-read-more {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--accent-blue);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-read-more:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* --- 9. CONTACT FORM SECTION --- */
.contact-section {
    padding: 100px 0;
    background: #fafbfc;
}
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}
.contact-form-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: rgba(0, 0, 0, 1);
    text-align: center;
}
.contact-intro {
    font-size: 16px;
    color: #64748b;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}
.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    background-color: #fafbfc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    background-color: white;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form input[type="tel"]::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}
.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: white;
    background-color: var(--accent-blue);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-submit:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
.btn-submit:active {
    transform: translateY(0);
}

/* Dark Mode for Contact Form */
:root.dark-mode .contact-section {
    background: #1a1f2e;
}
:root.dark-mode .contact-form-wrapper h2 {
    color: #e2e8f0;
}
:root.dark-mode .contact-intro {
    color: #94a3b8;
}
:root.dark-mode .contact-form {
    background: #2d3748;
    border-color: #4a5568;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
:root.dark-mode .form-group label {
    color: #e2e8f0;
}
:root.dark-mode .contact-form input[type="text"],
:root.dark-mode .contact-form input[type="email"],
:root.dark-mode .contact-form input[type="tel"],
:root.dark-mode .contact-form textarea {
    background-color: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
}
:root.dark-mode .contact-form input[type="text"]:focus,
:root.dark-mode .contact-form input[type="email"]:focus,
:root.dark-mode .contact-form input[type="tel"]:focus,
:root.dark-mode .contact-form textarea:focus {
    background-color: #1a202c;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
:root.dark-mode .contact-form input[type="text"]::placeholder,
:root.dark-mode .contact-form input[type="email"]::placeholder,
:root.dark-mode .contact-form input[type="tel"]::placeholder,
:root.dark-mode .contact-form textarea::placeholder {
    color: #64748b;
}

/* --- 10. FLOATING CONTACT --- */
.floating-contact { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 12px; z-index: 2000; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }
.float-btn img { width: 22px; filter: brightness(0) invert(1); }
.float-btn.loc { background: #5831f1; }
.float-btn.phone { background: #3b82f6; }
.float-btn.wp { background: #25d366; }

/* --- 11. MOBILE RESPONSIVE STYLES --- */

/* Nest Hub Max (1280px) - Smart Display */
@media (min-width: 1024px) and (max-width: 1280px) {
    .container {
        max-width: 1100px;
        padding: 0 40px;
    }
    
    .index-hero h1 {
        font-size: 44px;
        width: auto;
        max-width: 900px;
    }
    
    .stats-banner-headline {
        font-size: 38px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .potential-flex {
        gap: 50px;
    }
    
    .contact-form-wrapper {
        max-width: 800px;
    }
}

/* ASUS Zenbook Fold / Galaxy Z Fold 5 Unfolded (1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 30px;
    }
    
    .navbar {
        height: 75px;
    }
    
    .navbar-flex {
        padding: 0 30px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .nav-links a {
        font-size: 15px;
        padding: 10px 16px;
    }
    
    .index-hero {
        padding: 60px 20px;
        min-height: 280px;
    }
    
    .index-hero h1 {
        font-size: 40px;
        width: auto;
        max-width: 800px;
        line-height: 1.3;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 17px;
    }
    
    h1 {
        font-size: 34px;
    }
    
    h2 {
        font-size: 30px;
    }
    
    .stats-banner-section {
        padding: 80px 0;
    }
    
    .stats-banner-headline {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .stat-icon {
        width: 100px;
        height: 100px;
    }
    
    .stat-percentage {
        font-size: 38px;
    }
    
    .stat-title {
        font-size: 16px;
    }
    
    .why-partner {
        padding: 80px 0;
    }
    
    .partner-content h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .partner-content p {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .partner-image img {
        max-width: 300px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .services-section h2 {
        font-size: 34px;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-card img {
        width: 75px;
        height: 75px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 21px;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 15px;
    }
    
    .potential-section {
        padding: 80px 0;
    }
    
    .potential-content h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .potential-subheading {
        font-size: 19px;
        margin-bottom: 20px;
    }
    
    .potential-content p {
        font-size: 17px;
        margin-bottom: 30px;
    }
    
    .potential-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 16px 18px;
        font-size: 16px;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-form-wrapper h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .contact-intro {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 45px 35px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .btn-submit {
        padding: 18px 36px;
        font-size: 17px;
    }
}

/* Surface Duo / Galaxy Z Fold 5 Folded (540px) */
@media (min-width: 480px) and (max-width: 540px) {
    .container {
        width: 100%;
        padding: 0 24px;
    }
    
    .navbar {
        height: 72px;
    }
    
    .navbar-flex {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 23px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    .theme-icon,
    .current-lang {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .index-hero {
        margin-top: 72px;
        padding: 55px 24px;
        min-height: 220px;
    }
    
    .index-hero h1 {
        font-size: 30px;
        line-height: 1.3;
        padding: 18px 12px;
    }
    
    .hero-content h1 {
        font-size: 30px;
        margin-top: 30px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    h1 {
        margin-top: 72px;
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .stats-banner-section {
        padding: 70px 0;
    }
    
    .stats-banner-headline {
        font-size: 30px;
        margin-bottom: 45px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-icon {
        width: 95px;
        height: 95px;
    }
    
    .stat-percentage {
        font-size: 36px;
    }
    
    .stat-title {
        font-size: 16px;
    }
    
    .why-partner {
        padding: 70px 0;
    }
    
    .partner-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .partner-content p {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .partner-image img {
        max-width: 300px;
    }
    
    .services-section {
        padding: 70px 0;
    }
    
    .services-section .container {
        padding: 0 24px;
    }
    
    .services-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card img {
        width: 72px;
        height: 72px;
        margin-bottom: 18px;
    }
    
    .service-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .btn-view-all {
        padding: 15px 35px;
        font-size: 15px;
    }
    
    .potential-section {
        padding: 70px 0;
    }
    
    .potential-content h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .potential-subheading {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .potential-content p {
        font-size: 17px;
        margin-bottom: 30px;
    }
    
    .potential-features {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 15px 18px;
        font-size: 15px;
    }
    
    .checkmark {
        width: 17px;
        height: 17px;
    }
    
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-form-wrapper h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .contact-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .form-group {
        margin-bottom: 24px;
    }
    
    .form-group label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 16px 20px;
        font-size: 16px;
        min-height: 50px;
    }
    
    .contact-form textarea {
        min-height: 150px;
    }
    
    .btn-submit {
        padding: 17px 35px;
        font-size: 16px;
        min-height: 54px;
    }
    
    .stats-banner-contact {
        bottom: 22px;
        right: 22px;
        gap: 14px;
    }
    
    .contact-icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }
}

/* Samsung Galaxy A51/A71 (412px) */
@media (min-width: 360px) and (max-width: 412px) {
    .container {
        width: 100%;
        padding: 0 18px;
    }
    
    .navbar {
        height: 68px;
    }
    
    .navbar-flex {
        padding: 0 16px;
    }
    
    .logo {
        font-size: 21px;
    }
    
    .nav-links {
        gap: 7px;
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 7px 12px;
        min-height: 34px;
    }
    
    .theme-icon,
    .current-lang {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .index-hero {
        margin-top: 68px;
        padding: 45px 18px;
        min-height: 190px;
    }
    
    .index-hero h1 {
        font-size: 27px;
        line-height: 1.3;
        padding: 14px 10px;
    }
    
    .hero-content h1 {
        font-size: 27px;
        margin-top: 25px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    h1 {
        margin-top: 68px;
        font-size: 25px;
    }
    
    h2 {
        font-size: 21px;
    }
    
    .stats-banner-section {
        padding: 55px 0;
    }
    
    .stats-banner-headline {
        font-size: 27px;
        margin-bottom: 35px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    
    .stat-icon {
        width: 85px;
        height: 85px;
    }
    
    .stat-percentage {
        font-size: 33px;
    }
    
    .stat-title {
        font-size: 14px;
    }
    
    .why-partner {
        padding: 55px 0;
    }
    
    .partner-content h2 {
        font-size: 25px;
        margin-bottom: 16px;
    }
    
    .partner-content p {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .partner-image img {
        max-width: 260px;
    }
    
    .services-section {
        padding: 55px 0;
    }
    
    .services-section .container {
        padding: 0 18px;
    }
    
    .services-section h2 {
        font-size: 25px;
        margin-bottom: 32px;
    }
    
    .services-grid {
        gap: 16px;
        margin-top: 32px;
        margin-bottom: 32px;
    }
    
    .service-card {
        padding: 26px 16px;
    }
    
    .service-card img {
        width: 68px;
        height: 68px;
        margin-bottom: 16px;
    }
    
    .service-card h3 {
        font-size: 17px;
        margin-bottom: 9px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .btn-view-all {
        padding: 13px 30px;
        font-size: 14px;
    }
    
    .potential-section {
        padding: 55px 0;
    }
    
    .potential-content h2 {
        font-size: 25px;
        margin-bottom: 16px;
    }
    
    .potential-subheading {
        font-size: 17px;
        margin-bottom: 16px;
    }
    
    .potential-content p {
        font-size: 15px;
        margin-bottom: 26px;
    }
    
    .potential-features {
        gap: 11px;
        margin-bottom: 26px;
    }
    
    .feature-item {
        padding: 13px 15px;
        font-size: 14px;
    }
    
    .checkmark {
        width: 15px;
        height: 15px;
    }
    
    .contact-section {
        padding: 55px 0;
    }
    
    .contact-form-wrapper h2 {
        font-size: 25px;
        margin-bottom: 16px;
    }
    
    .contact-intro {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .contact-form {
        padding: 32px 22px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 9px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 14px 17px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .contact-form textarea {
        min-height: 135px;
    }
    
    .btn-submit {
        padding: 15px 30px;
        font-size: 15px;
        min-height: 50px;
    }
    
    .stats-banner-contact {
        bottom: 18px;
        right: 18px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    /* Navigation */
    .navbar {
        height: 70px;
    }
    .navbar-flex {
        padding: 0 15px;
        flex-wrap: wrap;
    }
    .logo {
        font-size: 22px;
    }
    .nav-links {
        gap: 8px;
        flex-wrap: wrap;
    }
    .nav-links a {
        font-size: 14px;
        padding: 8px 12px;
    }
    .header-right-controls {
        gap: 8px;
        margin-left: auto;
    }
    .theme-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .theme-options {
        min-width: 130px;
    }
    .theme-option {
        padding: 10px 14px;
        font-size: 13px;
    }
    .theme-option-icon {
        font-size: 14px;
    }
    .current-lang {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    /* Language Selector */
    .current-lang {
        padding: 6px 12px;
        font-size: 13px;
    }
    .lang-options {
        min-width: 100px;
    }
    .lang-option {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Hero Section */
    .index-hero {
        max-width: 100%;
        margin-top: 70px;
        padding: 40px 15px;
        min-height: 220px;
        border-radius: 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    .hero-title-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .index-hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: 32px;
        height: auto;
        line-height: 1.4;
        padding: 15px 10px;
        white-space: normal;
        font-weight: 800;
        margin: 0;
    }
    .hero-laptop-image {
        height: 480px;
        min-width: 480px;
    }
    .hero-content h1 {
        font-size: 32px;
        margin-top: 30px;
        height: auto;
    }
    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    /* Global h1 */
    h1 {
        margin-top: 70px;
        font-size: 28px;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 18px;
    }
    
    /* Stats Banner Section */
    .stats-banner-section {
        padding: 60px 0;
    }
    .stats-banner-headline {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stat-icon {
        width: 100px;
        height: 100px;
    }
    .stat-percentage {
        font-size: 36px;
    }
    .stat-title {
        font-size: 16px;
    }
    .stats-banner-contact {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
        bottom: auto;
        right: auto;
    }
    
    /* Services Grid */
    .services-section {
        padding: 50px 0;
    }
    .services-section .container {
        max-width: 700px;
        padding: 0 30px;
    }
    .services-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .service-card {
        padding: 25px 15px;
    }
    .service-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .service-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    .btn-view-all {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    
    /* Create Website Modal */
    .modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }
    .modal-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .upload-box {
        flex-direction: column;
        gap: 15px;
    }
    .upload-label {
        width: 100%;
        padding: 30px 40px;
        min-height: 120px;
    }
    .upload-icon {
        font-size: 36px;
    }
    .btn-create-new-file {
        width: 100%;
        padding: 30px 40px;
        font-size: 16px;
        min-height: 120px;
    }
    
    /* Folder Editor Modal */
    .editor-header-bar {
        padding: 12px 15px;
        gap: 15px;
        flex-wrap: wrap;
    }
    .editor-logo {
        font-size: 20px;
    }
    .editor-nav-links {
        gap: 12px;
        order: 3;
        width: 100%;
        justify-content: flex-start;
        margin-top: 8px;
    }
    .editor-nav-links a {
        font-size: 14px;
        padding: 6px 12px;
    }
    .editor-header-right {
        gap: 10px;
        order: 2;
    }
    .editor-header-actions {
        gap: 6px;
    }
    .editor-minimize-btn,
    .editor-close-btn {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
    .folder-editor-modal.minimized {
        width: 500px;
        height: 350px;
        right: 15px;
        bottom: 15px;
    }
    .editor-content-area {
        padding: 20px;
    }
    
    /* Folder Name Modal */
    .folder-name-modal-content {
        padding: 25px;
        max-width: 90%;
    }
    .folder-name-modal-content h3 {
        font-size: 20px;
    }
    .folder-name-input {
        font-size: 15px;
        padding: 10px 14px;
    }
    .btn-modal-cancel,
    .btn-modal-create {
        padding: 9px 20px;
        font-size: 14px;
    }
    .content-section {
        padding: 20px;
        min-height: 150px;
    }
    .section-title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    .file-content {
        margin: 0;
        padding: 15px;
        background-color: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-family: 'Courier New', monospace;
        font-size: 14px;
        color: #1e293b;
        white-space: pre-wrap;
        word-wrap: break-word;
        overflow-x: auto;
    }
    .editor-upload-label {
        padding: 30px 20px;
        min-height: 120px;
    }
    .editor-uploaded-files {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    /* Website Editor Modal */
    .editor-modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    .editor-header h2 {
        font-size: 24px;
    }
    .website-editor-textarea {
        min-height: 200px;
        padding: 15px;
        font-size: 15px;
    }
    .image-upload-label {
        padding: 25px;
        min-height: 120px;
    }
    .uploaded-images {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    .editor-actions {
        flex-direction: column;
    }
    .btn-cancel,
    .btn-save {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    /* Potential Section */
    .potential-section {
        padding: 60px 0;
    }
    .potential-flex {
        flex-direction: column;
        gap: 40px;
    }
    .potential-content {
        max-width: 100%;
        text-align: center;
    }
    .potential-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .potential-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .potential-section .hero-image {
        width: 100%;
    }
    .potential-section .hero-image img {
        max-width: 100%;
        width: 100%;
    }
    
    /* Buttons */
    .btn-view-all,
    .btn-read-more {
        padding: 14px 35px;
        font-size: 14px;
    }
    
    /* Potential Section */
    .potential-section {
        padding: 60px 0;
    }
    .potential-flex {
        flex-direction: column;
        gap: 40px;
    }
    .potential-content {
        max-width: 100%;
        text-align: center;
    }
    .potential-content h2 {
        font-size: 32px;
    }
    .potential-content p {
        font-size: 16px;
    }
    .potential-graphic {
        max-width: 100%;
        padding: 30px;
    }
    .potential-graphic img {
        max-width: 250px;
    }
    .potential-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Why Partner Section */
    .why-partner {
        padding: 50px 0;
    }
    .partner-content {
        margin-bottom: 30px;
    }
    .partner-content h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .partner-content p {
        font-size: 15px;
        line-height: 1.6;
    }
    .partner-image {
        margin-top: 30px;
    }
    .partner-image img {
        max-width: 300px;
    }
    
    /* Contact Form */
    .contact-section {
        padding: 50px 0;
    }
    .contact-form-wrapper {
        padding: 0;
    }
    .contact-form-wrapper h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .contact-intro {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .contact-form {
        padding: 30px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-group {
        margin-bottom: 20px;
    }
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
        padding: 12px 15px;
    }
    .btn-submit {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Floating Contact */
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 45px;
        height: 45px;
    }
    .float-btn img {
        width: 20px;
    }
    
    /* Stats Banner Contact */
    .stats-banner-contact {
        position: fixed;
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Feature Items */
    .feature-item {
        padding: 10px 12px;
        font-size: 14px;
    }
    .checkmark {
        width: 16px;
        height: 16px;
    }
    
    /* Portfolio Section */
    .portfolio-section {
        padding: 60px 0;
    }
    .portfolio-heading {
        font-size: 32px;
        margin-bottom: 12px;
    }
    .portfolio-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .portfolio-box-wrapper {
        max-width: 90%;
        margin-bottom: 40px;
        gap: 15px;
    }
    .portfolio-box-label {
        font-size: 20px;
    }
    .portfolio-see-box {
        width: 100%;
    }
    .portfolio-see-box-content {
        padding: 25px 35px;
        gap: 12px;
    }
    .portfolio-see-box-text {
        font-size: 18px;
    }
    .portfolio-see-box-arrow {
        font-size: 20px;
    }
    .portfolio-modal-content {
        width: 95%;
        max-height: 85vh;
        margin: 20px auto;
    }
    .portfolio-modal-header {
        padding: 20px 25px;
    }
    .portfolio-modal-title {
        font-size: 24px;
    }
    .portfolio-modal-close {
        width: 35px;
        height: 35px;
        font-size: 32px;
    }
    .portfolio-modal-body {
        padding: 25px;
    }
    .portfolio-modal-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .portfolio-selector-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .portfolio-selector-label {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .portfolio-selector-box {
        padding: 30px;
        min-height: 150px;
    }
    .portfolio-selector-logo {
        width: 80px;
        height: 80px;
    }
    .portfolio-back-button {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 25px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .portfolio-banner {
        height: 200px;
    }
    .portfolio-content {
        padding: 25px;
    }
    .portfolio-logo {
        width: 70px;
        height: 70px;
        margin: -45px 0 15px 0;
    }
    .portfolio-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .portfolio-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .portfolio-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
        margin-bottom: 20px;
    }
    .portfolio-tags {
        gap: 8px;
    }
    .portfolio-tag {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* Samsung Galaxy S8+ and similar large phones (360px - 414px) */
@media (max-width: 414px) and (min-width: 360px) {
    /* Container */
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    /* Navigation */
    .navbar {
        height: 70px;
    }
    .navbar-flex {
        padding: 0 16px;
        flex-wrap: nowrap;
    }
    .logo {
        font-size: 22px;
    }
    .nav-links {
        gap: 8px;
        margin-left: 12px;
        flex-wrap: wrap;
    }
    .nav-links a {
        font-size: 14px;
        padding: 8px 14px;
        min-height: 36px;
        display: flex;
        align-items: center;
    }
    .header-right-controls {
        gap: 10px;
    }
    .theme-icon,
    .current-lang {
        width: 38px;
        height: 38px;
        font-size: 17px;
        padding: 8px;
    }
    
    /* Hero Section */
    .index-hero {
        margin-top: 70px;
        padding: 50px 20px;
        min-height: 200px;
    }
    .index-hero h1 {
        font-size: 28px;
        line-height: 1.3;
        padding: 15px 10px;
    }
    .hero-content h1 {
        font-size: 28px;
        margin-top: 25px;
    }
    .hero-content p {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    /* Global Typography */
    h1 {
        margin-top: 70px;
        font-size: 26px;
        line-height: 1.3;
    }
    h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    h3 {
        font-size: 18px;
    }
    
    /* Stats Banner */
    .stats-banner-section {
        padding: 60px 0;
    }
    .stats-banner-headline {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .stat-icon {
        width: 90px;
        height: 90px;
    }
    .stat-percentage {
        font-size: 34px;
    }
    .stat-title {
        font-size: 15px;
    }
    
    /* Why Partner Section */
    .why-partner {
        padding: 60px 0;
    }
    .partner-content h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    .partner-content p {
        font-size: 16px;
        margin-bottom: 35px;
    }
    .partner-image img {
        max-width: 280px;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 0;
    }
    .services-section .container {
        padding: 0 20px;
    }
    .services-section h2 {
        font-size: 26px;
        margin-bottom: 35px;
    }
    .services-grid {
        gap: 18px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .service-card {
        padding: 28px 18px;
    }
    .service-card img {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .service-card p {
        font-size: 14px;
    }
    .btn-view-all {
        padding: 14px 32px;
        font-size: 15px;
        margin-top: 15px;
    }
    
    /* Potential Section */
    .potential-section {
        padding: 60px 0;
    }
    .potential-content h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    .potential-subheading {
        font-size: 18px;
        margin-bottom: 18px;
    }
    .potential-content p {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .potential-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }
    .feature-item {
        padding: 14px 16px;
        font-size: 15px;
    }
    .checkmark {
        width: 16px;
        height: 16px;
    }
    .btn-read-more {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }
    .contact-form-wrapper h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    .contact-intro {
        font-size: 15px;
        margin-bottom: 35px;
    }
    .contact-form {
        padding: 35px 25px;
    }
    .form-group {
        margin-bottom: 22px;
    }
    .form-group label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 15px 18px;
        font-size: 16px;
        min-height: 48px;
    }
    .contact-form textarea {
        min-height: 140px;
    }
    .btn-submit {
        padding: 16px 32px;
        font-size: 16px;
        min-height: 52px;
    }
    
    /* Contact Icons */
    .stats-banner-contact {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 35px;
    }
    .footer-container {
        padding: 0 20px;
    }
    .footer-contact h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    /* Navigation */
    .navbar {
        height: 65px;
    }
    .navbar-flex {
        padding: 0 12px;
        flex-wrap: wrap;
    }
    .logo {
        font-size: 20px;
    }
    .nav-links {
        gap: 5px;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
    .nav-links a {
        font-size: 13px;
        padding: 6px 10px;
    }
    .header-right-controls {
        order: 2;
        gap: 6px;
    }
    .theme-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .theme-options {
        min-width: 120px;
    }
    .theme-option {
        padding: 8px 12px;
        font-size: 12px;
    }
    .theme-option-icon {
        font-size: 14px;
    }
    .current-lang {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    /* Language Selector */
    .current-lang {
        padding: 6px 10px;
        font-size: 12px;
    }
    .lang-options {
        min-width: 90px;
    }
    .lang-option {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    /* Hero Section */
    .index-hero {
        margin-top: 65px;
        padding: 40px 12px;
        min-height: 180px;
        border-radius: 0;
    }
    .hero-title-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .index-hero h1 {
        font-size: 26px;
        width: 100%;
        line-height: 1.4;
        white-space: normal;
        padding: 12px 8px;
        font-weight: 800;
        margin: 0;
    }
    .hero-laptop-image {
        height: 350px;
        min-width: 350px;
    }
    .hero-content h1 {
        font-size: 26px;
        margin-top: 20px;
    }
    .hero-content p {
        font-size: 15px;
    }
    
    /* Global h1 */
    h1 {
        margin-top: 65px;
        font-size: 22px;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 16px;
    }
    
    /* Stats Banner Section */
    .stats-banner-headline {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stat-icon {
        width: 80px;
        height: 80px;
    }
    .stat-percentage {
        font-size: 32px;
    }
    .stat-title {
        font-size: 14px;
    }
    .stats-banner-contact {
        margin-top: 30px;
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* Potential Section */
    .potential-section {
        padding: 40px 0;
    }
    .potential-content h2 {
        font-size: 20px;
    }
    .potential-subheading {
        font-size: 16px;
    }
    .potential-content p {
        font-size: 14px;
    }
    .potential-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .feature-item {
        padding: 10px 12px;
        font-size: 13px;
    }
    .checkmark {
        width: 14px;
        height: 14px;
    }
    .btn-read-more {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    /* Contact Form */
    .contact-section {
        padding: 40px 0;
    }
    .contact-form-wrapper h2 {
        font-size: 20px;
    }
    .contact-intro {
        font-size: 14px;
    }
    .contact-form {
        padding: 25px 15px;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 10px 12px;
    }
    .btn-submit {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Why Partner */
    .why-partner {
        padding: 40px 0;
    }
    .partner-content h2 {
        font-size: 20px;
    }
    .partner-content p {
        font-size: 14px;
    }
    .partner-image img {
        max-width: 200px;
    }
    
    /* Services Section */
    .services-section {
        padding: 40px 0;
    }
    .services-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
    .services-section h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .service-card {
        padding: 25px 15px;
    }
    .service-card img {
        width: 50px;
        height: 50px;
    }
    .service-card h3 {
        font-size: 15px;
    }
    .service-card p {
        font-size: 12px;
    }
    .btn-view-all {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    
    /* Create Website Modal */
    .modal-content {
        padding: 25px 15px;
    }
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
    }
    .modal-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .upload-label {
        padding: 25px 30px;
        min-height: 110px;
    }
    .upload-icon {
        font-size: 32px;
    }
    .upload-text {
        font-size: 16px;
    }
    .btn-create-new-file {
        font-size: 15px;
        padding: 25px 30px;
        min-height: 110px;
    }
    
    /* Folder Editor Modal */
    .editor-workspace {
        flex-direction: column;
    }
    .editor-sidebar {
        width: 100%;
        max-height: 200px;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .sidebar-header {
        padding: 10px 12px;
    }
    .sidebar-header h3 {
        font-size: 15px;
    }
    .sidebar-action-btn {
        width: 22px;
        height: 22px;
        font-size: 14px;
        padding: 3px 4px;
    }
    .editor-logo {
        font-size: 18px;
    }
    .editor-nav-links {
        gap: 8px;
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    .editor-nav-links a {
        font-size: 13px;
        padding: 5px 10px;
    }
    .editor-header-actions {
        gap: 5px;
        order: 2;
    }
    .editor-minimize-btn,
    .editor-close-btn {
        width: 24px;
        height: 24px;
        font-size: 18px;
    }
    .folder-editor-modal.minimized {
        width: 90vw;
        height: 300px;
        right: 5vw;
        bottom: 10px;
    }
    .editor-content-area {
        flex-direction: column;
    }
    .editor-left-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #334155;
        max-height: 50vh;
    }
    .sidebar-nav {
        flex-direction: row;
        padding: 15px;
        gap: 8px;
        overflow-x: auto;
    }
    .sidebar-nav-item {
        flex-shrink: 0;
        padding: 12px 16px;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    .sidebar-nav-item.active {
        border-left: none;
        border-bottom-color: var(--accent-blue);
    }
    .nav-icon {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    .nav-label {
        font-size: 12px;
    }
    .sidebar-content-area {
        padding: 15px;
    }
    .editor-text-input {
        min-height: 150px;
        padding: 12px;
        font-size: 13px;
    }
    .editor-upload-label-sidebar {
        padding: 20px 15px;
    }
    .editor-upload-label-sidebar .upload-icon {
        font-size: 28px;
    }
    .editor-upload-label-sidebar .upload-text {
        font-size: 13px;
    }
    .uploads-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    .uploaded-item-name {
        font-size: 11px;
        padding: 6px 8px;
    }
    .canvas-image-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    .canvas-image-name {
        font-size: 16px;
    }
    .canvas-image-wrapper {
        padding: 15px;
        margin-bottom: 20px;
    }
    .canvas-style-controls {
        padding: 15px;
        gap: 15px;
    }
    .style-control-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .style-control-group label {
        min-width: auto;
    }
    .style-control-group input[type="range"] {
        width: 100%;
    }
    .editor-canvas-area {
        flex: 1;
    }
    .canvas-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .canvas-title {
        font-size: 16px;
    }
    .btn-convert-to-code {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }
    .code-result-content {
        max-width: 95%;
        padding: 20px;
    }
    .code-result-title {
        font-size: 20px;
    }
    .code-display {
        font-size: 12px;
        padding: 15px;
    }
    .code-result-actions {
        flex-direction: column;
    }
    .btn-copy-code,
    .btn-download-code {
        width: 100%;
    }
    .canvas-content {
        padding: 20px;
    }
    .canvas-preview {
        padding: 20px;
        min-height: 300px;
    }
    
    /* Folder Name Modal */
    .folder-name-modal-content {
        padding: 20px;
    }
    .folder-name-modal-content h3 {
        font-size: 18px;
    }
    .folder-name-modal-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .folder-name-input {
        font-size: 14px;
        padding: 10px 12px;
        margin-bottom: 15px;
    }
    .btn-modal-cancel,
    .btn-modal-create {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    /* Website Editor Modal */
    .editor-modal-content {
        padding: 25px 15px;
        max-width: 95%;
    }
    .editor-header h2 {
        font-size: 20px;
    }
    .website-editor-textarea {
        min-height: 150px;
        padding: 12px;
        font-size: 14px;
    }
    .image-upload-label {
        padding: 20px;
        min-height: 100px;
    }
    .upload-icon {
        font-size: 28px;
    }
    .upload-text {
        font-size: 14px;
    }
    .uploaded-images {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
    .uploaded-image-item img {
        height: 100px;
    }
    
    /* Why Partner Section */
    .why-partner {
        padding: 40px 0;
    }
    .partner-content h2 {
        font-size: 22px;
    }
    .partner-content p {
        font-size: 14px;
    }
    .partner-image img {
        max-width: 250px;
    }
    
    /* Potential Section */
    .potential-section {
        padding: 40px 0;
    }
    .potential-content h2 {
        font-size: 22px;
    }
    .potential-content p {
        font-size: 15px;
    }
    
    /* Potential Section */
    .potential-content h2 {
        font-size: 28px;
    }
    .potential-content p {
        font-size: 15px;
    }
    .potential-graphic {
        padding: 25px;
    }
    .potential-graphic img {
        max-width: 200px;
    }
    .potential-features {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form */
    .contact-form-wrapper h2 {
        font-size: 24px;
    }
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Why Partner Section */
    .partner-content h2 {
        font-size: 24px;
    }
    
    /* Portfolio Section */
    .portfolio-section {
        padding: 50px 0;
    }
    .portfolio-heading {
        font-size: 26px;
        margin-bottom: 10px;
    }
}

    .portfolio-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }
    .portfolio-box-wrapper {
        max-width: 95%;
        margin-bottom: 35px;
        gap: 12px;
    }
    .portfolio-box-label {
        font-size: 18px;
    }
    .portfolio-see-box {
        width: 100%;
    }
    .portfolio-see-box-content {
        padding: 20px 25px;
        gap: 10px;
    }
    .portfolio-see-box-text {
        font-size: 16px;
    }
    .portfolio-see-box-arrow {
        font-size: 18px;
    }
    .portfolio-modal-content {
        width: 98%;
        max-height: 90vh;
        margin: 10px auto;
        border-radius: 16px;
    }
    .portfolio-modal-header {
        padding: 15px 20px;
    }
    .portfolio-modal-title {
        font-size: 20px;
    }
    .portfolio-modal-close {
        width: 30px;
        height: 30px;
        font-size: 28px;
    }
    .portfolio-modal-body {
        padding: 20px;
    }
    .portfolio-modal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .portfolio-modal-card-header {
        padding: 20px 20px 15px 20px;
        min-height: 75px;
        align-items: flex-start;
    }
    .portfolio-modal-logo {
        width: 60px;
        height: 60px;
        margin: 0;
        top: 0;
    }
    .portfolio-modal-banner {
        height: 150px;
    }
    .portfolio-modal-card-content {
        padding: 20px;
        padding-top: 20px;
    }
    .portfolio-modal-card-title {
        font-size: 18px;
    }
    .portfolio-modal-card-description {
        font-size: 13px;
    }
    .portfolio-modal-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px;
    }
    .portfolio-banner {
        height: 180px;
    }
    .portfolio-content {
        padding: 20px;
    }
    .portfolio-logo {
        width: 60px;
        height: 60px;
        margin: -40px 0 15px 0;
        padding: 8px;
    }
    .portfolio-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .portfolio-description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    .portfolio-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px;
        margin-bottom: 18px;
    }
    .portfolio-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* --- 12. PORTFOLIO SECTION --- */
.portfolio-section {
    padding: 100px 0;
    background: #fff;
}

.portfolio-heading {
    font-size: 42px;
    font-weight: 800;
    color: rgba(0, 0, 0, 1);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.portfolio-subtitle {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.portfolio-box-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.portfolio-box-label {
    font-size: 24px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
    text-align: center;
}

.portfolio-see-box {
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.portfolio-see-box-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 50px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2563eb 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.portfolio-see-box:hover .portfolio-see-box-content {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.portfolio-see-box:active .portfolio-see-box-content {
    transform: translateY(-2px);
}

.portfolio-see-box-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.portfolio-see-box-arrow {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.portfolio-see-box:hover .portfolio-see-box-arrow {
    transform: translateX(5px);
}

/* Portfolio Modal */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.portfolio-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.portfolio-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.portfolio-modal-title {
    font-size: 32px;
    font-weight: 800;
    color: rgba(0, 0, 0, 1);
    margin: 0;
}

.portfolio-modal-close {
    background: none;
    border: none;
    font-size: 40px;
    color: #64748b;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.portfolio-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: rotate(90deg);
}

.portfolio-modal-body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
}

/* Portfolio Selector View */
.portfolio-selector-view {
    width: 100%;
}

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

.portfolio-selector-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-selector-label {
    font-size: 20px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
    text-align: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.portfolio-selector-item:hover .portfolio-selector-label {
    color: var(--accent-blue);
    transform: translateY(-3px);
}

.portfolio-selector-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: all 0.3s ease;
}

.portfolio-selector-item:hover .portfolio-selector-box {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.portfolio-selector-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.portfolio-selector-item:hover .portfolio-selector-logo {
    transform: scale(1.1);
}

.portfolio-selector-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Portfolio Detail View */
.portfolio-detail-view {
    width: 100%;
    animation: fadeInUp 0.4s ease;
}

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

.portfolio-back-button {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    color: #334155;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-back-button:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    transform: translateX(-5px);
}

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

.portfolio-modal-item {
    width: 100%;
}

.portfolio-modal-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.portfolio-modal-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.portfolio-modal-link:hover .portfolio-modal-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.portfolio-modal-card-header {
    padding: 25px 25px 20px 25px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 16px 16px 0 0;
    transition: all 0.3s ease;
    min-height: 90px;
}

.portfolio-modal-link:hover .portfolio-modal-card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.portfolio-modal-logo {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0;
    position: relative;
    top: 0;
}

.portfolio-modal-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.portfolio-modal-logo img {
    transition: transform 0.3s ease;
}

.portfolio-modal-logo:hover img {
    transform: scale(1.1);
}

.portfolio-modal-banner {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-modal-banner:hover {
    transform: scale(1.01);
}

.portfolio-modal-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.portfolio-modal-banner:hover img {
    transform: scale(1.08);
}

/* Overlay for better image visibility */
.portfolio-modal-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.portfolio-modal-banner:hover::after {
    opacity: 0.5;
}

.portfolio-modal-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    transition: all 0.3s ease;
}

.portfolio-modal-card-content:hover {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 0.3) 100%);
}

.portfolio-modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio-modal-card-title {
    font-size: 20px;
    font-weight: 800;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-modal-card-title:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.portfolio-modal-card-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-modal-card-description:hover {
    color: #334155;
    transform: translateX(3px);
}

.portfolio-modal-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.portfolio-modal-products:hover {
    background: #f1f5f9;
    transform: scale(1.02);
}

.portfolio-modal-product-item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-modal-product-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    z-index: 1;
    position: relative;
}

.portfolio-modal-product-item img {
    transition: transform 0.3s ease;
}

.portfolio-modal-product-item:hover img {
    transform: scale(1.1);
}

.portfolio-modal-product-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.portfolio-modal-tags:hover {
    gap: 10px;
}

.portfolio-modal-tag {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 600;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-modal-tag:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    border-color: var(--accent-blue);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    width: 100%;
}

.portfolio-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.portfolio-link:hover .portfolio-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.portfolio-banner {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.portfolio-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-logo {
    width: 80px;
    height: 80px;
    margin: -50px 0 20px 0;
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.portfolio-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio-title {
    font-size: 24px;
    font-weight: 800;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 15px;
    line-height: 1.3;
}

.portfolio-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.portfolio-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
}

.portfolio-product-item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.portfolio-product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    border-color: var(--accent-blue);
}

.portfolio-product-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.portfolio-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--accent-blue);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.portfolio-tag:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

/* Dark Mode Portfolio */
:root.dark-mode .portfolio-section {
    background: #0f172a;
}

:root.dark-mode .portfolio-heading {
    color: #e2e8f0;
}

:root.dark-mode .portfolio-subtitle {
    color: #94a3b8;
}

:root.dark-mode .portfolio-see-box-content {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2563eb 100%);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

:root.dark-mode .portfolio-see-box:hover .portfolio-see-box-content {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

:root.dark-mode .portfolio-box-label {
    color: #e2e8f0;
}

:root.dark-mode .portfolio-modal-content {
    background: #1e293b;
    border: 1px solid #334155;
}

:root.dark-mode .portfolio-modal-header {
    background: #0f172a;
    border-bottom-color: #334155;
}

:root.dark-mode .portfolio-modal-title {
    color: #e2e8f0;
}

:root.dark-mode .portfolio-modal-close {
    color: #94a3b8;
}

:root.dark-mode .portfolio-modal-close:hover {
    background: #334155;
    color: #e2e8f0;
}

:root.dark-mode .portfolio-modal-card {
    background: #1e293b;
    border-color: #334155;
}

:root.dark-mode .portfolio-modal-link:hover .portfolio-modal-card {
    border-color: var(--accent-blue);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

:root.dark-mode .portfolio-modal-logo {
    background: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

:root.dark-mode .portfolio-modal-card-header {
    background: #1e293b;
}

:root.dark-mode .portfolio-modal-link:hover .portfolio-modal-card-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

:root.dark-mode .portfolio-modal-logo:hover {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

:root.dark-mode .portfolio-modal-card-title {
    color: #e2e8f0;
}

:root.dark-mode .portfolio-modal-card-title:hover {
    color: var(--accent-blue);
}

:root.dark-mode .portfolio-modal-card-description {
    color: #94a3b8;
}

:root.dark-mode .portfolio-modal-card-description:hover {
    color: #cbd5e1;
}

:root.dark-mode .portfolio-modal-card-content:hover {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.3) 100%);
}

:root.dark-mode .portfolio-modal-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

:root.dark-mode .portfolio-modal-banner::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
}

:root.dark-mode .portfolio-modal-products {
    background: #0f172a;
}

:root.dark-mode .portfolio-modal-products:hover {
    background: #1e293b;
}

:root.dark-mode .portfolio-modal-product-item {
    background: #1e293b;
    border-color: #334155;
}

:root.dark-mode .portfolio-modal-product-item:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

:root.dark-mode .portfolio-modal-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.3);
}

:root.dark-mode .portfolio-modal-tag:hover {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

:root.dark-mode .portfolio-selector-label {
    color: #e2e8f0;
}

:root.dark-mode .portfolio-selector-item:hover .portfolio-selector-label {
    color: var(--accent-blue);
}

:root.dark-mode .portfolio-selector-box {
    background: #1e293b;
    border-color: #334155;
}

:root.dark-mode .portfolio-selector-item:hover .portfolio-selector-box {
    border-color: var(--accent-blue);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

:root.dark-mode .portfolio-back-button {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

:root.dark-mode .portfolio-back-button:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

:root.dark-mode .portfolio-card {
    background: #1e293b;
    border-color: #334155;
}

:root.dark-mode .portfolio-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

:root.dark-mode .portfolio-logo {
    background: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

:root.dark-mode .portfolio-title {
    color: #e2e8f0;
}

:root.dark-mode .portfolio-description {
    color: #94a3b8;
}

:root.dark-mode .portfolio-products {
    background: #0f172a;
}

:root.dark-mode .portfolio-product-item {
    background: #1e293b;
    border-color: #334155;
}

:root.dark-mode .portfolio-product-item:hover {
    border-color: var(--accent-blue);
}

:root.dark-mode .portfolio-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.3);
}

:root.dark-mode .portfolio-tag:hover {
    background: var(--accent-blue);
    color: white;
}

/* --- 13. FOOTER --- */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-contact h3 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    text-align: center;
    max-width: 300px;
}

.footer-contact-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-contact-item:hover {
    color: var(--accent-blue);
}

.footer-icon {
    font-size: 20px;
    color: var(--accent-blue);
    min-width: 24px;
}

.footer-text {
    color: white;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-container {
        padding: 0 20px;
        gap: 40px;
        flex-direction: column;
    }
    
    .footer-contact {
        min-width: 100%;
    }
    
    .footer-contact h3 {
        font-size: 30px;
    }
    
    .footer-contact-items-wrapper {
        gap: 20px;
    }
    
    .footer-contact-item {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .footer-contact h3 {
        font-size: 26px;
    }
    
    .footer-contact-items-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-contact-item {
        font-size: 14px;
    }
    
    .footer-icon {
        font-size: 18px;
    }
}