/* Import Google Font - Poppins (Bold & Rounded) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* CSS Variables for Theme */
:root {
    --bg-gradient-start: #ffffff;
    --bg-gradient-end: #f8f9fa;
    --navbar-bg: #ffffff;
    --navbar-shadow: rgba(0, 0, 0, 0.1);
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --container-bg: #ffffff;
    --container-border: #e0e0e0;
    --drop-area-bg: #F8FAFC;
    --drop-area-hover: #E0F2FE;
    --footer-bg: #f8f9fa;
    --footer-border: #e0e0e0;
    --stats-bg-start: #f0f9ff;
    --stats-bg-end: #e0f2fe;
    --stats-border: #b3e5fc;
    --feature-card-bg: #ffffff;
    --feature-card-border: #e0e0e0;
    --feature-card-shadow: rgba(0, 0, 0, 0.08);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --bg-gradient-start: #000000;
    --bg-gradient-end: #000000;
    --navbar-bg: #000000;
    --navbar-shadow: rgba(0, 0, 0, 0.5);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --container-bg: #1a1a1a;
    --container-border: #444444;
    --drop-area-bg: #1a1a1a;
    --drop-area-hover: #2a2a2a;
    --footer-bg: #000000;
    --footer-border: #444444;
    --stats-bg-start: #000000;
    --stats-bg-end: #1a1a1a;
    --stats-border: #444444;
    --feature-card-bg: #1a1a1a;
    --feature-card-border: #444444;
    --feature-card-shadow: rgba(0, 0, 0, 0.5);
}

/* Custom scrollbar styling for dark theme */
[data-theme="dark"] ::-webkit-scrollbar {
    width: 8px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: #000000;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #444444;
    border-radius: 4px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: #666666;
}

/* Light theme scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Remove all blue outlines and focus rings */
*, *:before, *:after {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Fix overscroll behavior and ensure consistent backgrounds */
html {
    background: var(--bg-gradient-start);
    transition: background 0.3s ease;
    overscroll-behavior: none; /* Prevents bounce effect */
}

/* Global Styles */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background: linear-gradient(to bottom right, var(--bg-gradient-start), var(--bg-gradient-end));
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0;
    text-align: center;
    color: var(--text-primary);
    padding-top: 80px; /* Push content below navbar */
    transition: background 0.3s ease, color 0.3s ease;
    overscroll-behavior: none; /* Prevents white areas when scrolling beyond content */
}

/* Stick Navbar to the Top */
.nav-bar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 30px;
    background: var(--navbar-bg);
    box-shadow: 0px 4px 12px var(--navbar-shadow);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle {
    position: absolute;
    top: 35%;
    right: 90px;
    transform: translateY(-50%);
    background: none;
    border: 2px solid #38BDF8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #38BDF8;
    font-size: 18px;
}

.theme-toggle:hover {
    background: #38BDF8;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.theme-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

/* Navbar Logo */
.nav-bar .logo a {
    font-size: 24px;
    font-weight: 700;
    color: #38BDF8;
    text-decoration: none;
    cursor: pointer;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px; /* Even spacing */
    align-items: center;
    margin-left: auto; /* Push links to the right */
    margin-right: 50px; /* Ensure proper spacing from the right edge */
}

/* Individual Buttons */
.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    padding: 10px 16px; /* Ensures consistent size */
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
    border: 2px solid transparent;
    font-size: 16px;
    white-space: nowrap; /* Prevents text wrapping */
    display: inline-block;
}

/* Fix Hover Effect */
.nav-links a:hover {
    background: #38BDF8 !important; /* Ensures hover works properly */
    border-color: #38BDF8 !important;
    color: white !important;
}


/* Fix Title Overlapping */
h1 {
    font-size: 36px;
    font-weight: 700;
    color: #38BDF8;
    text-transform: uppercase; /* Adds emphasis to the title */
    letter-spacing: 2px; /* Adds some space between letters */
    margin-bottom: 20px; /* Adds space below the title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Styling for the Simple Description Text */
.container .simple-description {
    font-size: 20px;
    font-weight: 500;
    color: #38BDF8; /* Lighter blue for contrast */
    margin-top: 5px;
    margin-bottom: 20px;
    line-height: 1.6; /* Improves readability */
    text-align: center;
    letter-spacing: 1px; /* Slight space between letters for a cleaner look */
    font-style: italic; /* Adds a subtle emphasis */
}

/* Optional: Add a subtle underline or border to make it stand out more */
.container .simple-description::after {
    content: "";
    display: block;
    width: 60px; /* Adjust based on preference */
    height: 3px;
    background-color: #38BDF8; /* Same blue color */
    margin: 15px auto 0;
}

/* Convert Files Section */
.container {
    margin-top: 20px;
    background: var(--container-bg);
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
    width: 800px;
    text-align: center;
    color: var(--text-primary);
    border: 1px solid var(--container-border);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Welcome Section Styling */
.welcome-section {
    margin-bottom: 40px;
}

.welcome-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
    transition: color 0.3s ease;
}

.welcome-title .brand-name {
    color: #38BDF8;
}

.welcome-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

/* Drop Area */
.drop-area {
    border: 3px dashed #38BDF8;
    padding: 30px;
    border-radius: 14px;
    cursor: pointer;
    background: var(--drop-area-bg);
    color: var(--text-primary);
    font-weight: 700;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    font-size: 18px;
}

.drop-area:hover {
    background: var(--drop-area-hover);
    border-color: #2563eb;
}

/* File List */
.file-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* File Item */
.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    padding: 5px 10px;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

/* Center the Remove button */
.file-item button {
    padding: 6px 12px;
    border: none;
    background-color: #FF4D4D;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.file-item button:hover {
    background-color: #D43F3F;
}

/* Convert Options */
.convert-options {
    display: none;
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-primary);
    text-align: center;
    transition: color 0.3s ease;
}

/* Keep "Convert to" Black */
.convert-options label {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Make Dropdown Smaller with Dashed Blue Border */
.convert-options select {
    padding: 6px 12px;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-primary);
    border: 2px dashed #38BDF8; /* Correct Blue */
    border-radius: 6px;
    background: var(--container-bg);
    cursor: pointer;
    width: auto;
    min-width: 120px;
    outline: none;
    transition: 0.3s;
}

.convert-options select:hover {
    border-color: #2563EB;
    background: var(--drop-area-hover);
}

/* Button & Select */
select, button {
    margin-top: 10px;
    padding: 14px 22px;
    font-size: 18px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
}

button {
    background-color: #38BDF8;
    color: white;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background-color: #2563eb;
    transform: scale(1.05);
}

/* Download Link */
#downloadLink {
    display: none;
    margin-top: 20px;
    font-size: 18px;
    color: #38BDF8;
    text-decoration: none;
    font-weight: 700;
}

#downloadLink:hover {
    color: #2563eb;
}

/* Home page buttons styling */
#selectionButtons a button {
    padding: 20px 15px;
    font-size: 16px;
    background-color: #38BDF8;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin: 0;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
    transition: all 0.2s ease;
    width: 100%;
    height: 80px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#selectionButtons a button:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

#selectionButtons a {
    text-decoration: none;
}

.selection-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    position: relative;
}

/* Feature Cards Section - 2x2 Grid Layout */
.features-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 80px;
    padding: 0 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--feature-card-bg);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0px 8px 24px var(--feature-card-shadow);
    border: 1px solid var(--feature-card-border);
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-icon.convert {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2338BDF8"><path d="M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H10V20H6V4H13V9H18V12H20V8L14,2M20.31,14.38C21.39,14.78 22,15.76 22,16.69V19.78A2.22,2.22 0 0,1 19.78,22H17.22A2.22,2.22 0 0,1 15,19.78V16.69C15,15.76 15.61,14.78 16.69,14.38L17.11,14.22L17.27,13.8C17.65,12.96 18.5,12.44 19.5,12.44C20.5,12.44 21.35,12.96 21.73,13.8L21.89,14.22L22.31,14.38M19.5,15.5A1,1 0 0,0 18.5,16.5A1,1 0 0,0 19.5,17.5A1,1 0 0,0 20.5,16.5A1,1 0 0,0 19.5,15.5Z"/></svg>');
}

.feature-icon.anywhere {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2338BDF8"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
}

.feature-icon.privacy {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2338BDF8"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zM12 7c1.1 0 2 .9 2 2v2h1v5H9v-5h1V9c0-1.1.9-2 2-2zm0 1c-.55 0-1 .45-1 1v2h2V9c0-.55-.45-1-1-1z"/></svg>');
}

.feature-icon.secure {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2338BDF8"><path d="M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z"/></svg>');
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

/* Responsive Design for Feature Cards */
@media (max-width: 768px) {
    .features-section {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .feature-card {
        width: 100%;
        min-height: auto;
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
}

/* Landscape orientation suggestion for mobile */
.orientation-suggestion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    backdrop-filter: blur(10px);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
    /* Prevent scrolling behind overlay */
    overflow: hidden;
    /* Prevent touch interactions behind overlay */
    -webkit-overflow-scrolling: touch;
}

/* Make the overlay unescapable on mobile */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .orientation-suggestion:not(.hidden) {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 999999 !important;
    }
    
    /* Disable body scrolling when overlay is shown */
    body:has(.orientation-suggestion:not(.hidden)) {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
}

.orientation-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: rotatePhone 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.3));
}

.orientation-message {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.orientation-submessage {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 280px;
}



@keyframes rotatePhone {
    0%, 100% { 
        transform: rotate(0deg) scale(1); 
    }
    25% { 
        transform: rotate(15deg) scale(1.05); 
    }
    50% { 
        transform: rotate(90deg) scale(1.1); 
    }
    75% { 
        transform: rotate(75deg) scale(1.05); 
    }
}

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

@keyframes forcedRotate {
    0%, 100% { 
        transform: rotate(0deg) scale(1.2); 
    }
    25% { 
        transform: rotate(30deg) scale(1.3); 
    }
    50% { 
        transform: rotate(90deg) scale(1.4); 
    }
    75% { 
        transform: rotate(60deg) scale(1.3); 
    }
}

/* Show orientation suggestion only on mobile portrait - with more specific conditions */
@media screen and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) {
    .orientation-suggestion:not(.hidden) {
        display: flex;
    }
}

/* Ensure it's hidden on desktop and landscape */
@media screen and (min-width: 769px), screen and (orientation: landscape) {
    .orientation-suggestion {
        display: none !important;
    }
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    /* Optimize body for mobile */
    body {
        padding-top: 70px; /* Reduced for mobile */
    }
    
    /* Make Navbar Adjust for Smaller Screens */
    .nav-bar {
        flex-direction: column;
        padding: 10px 20px;
    }
    
    /* Adjust theme toggle for mobile */
    .theme-toggle {
        right: 20px;
        top: 15px;
        transform: none;
        position: absolute;
    }
    
    .theme-toggle:hover {
        transform: scale(1.1);
    }
    
    .theme-toggle:active {
        transform: scale(0.95);
    }

    .nav-links {
        flex-direction: column; /* Stack links on smaller screens */
        gap: 10px;
        margin-top: 10px;
        margin-right: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    /* Optimize Container for Mobile */
    .container {
        width: 95%;
        padding: 25px 15px;
        margin-top: 15px;
    }
    
    .welcome-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .welcome-subtitle {
        font-size: 16px;
    }

    /* Optimize Drop Area for Touch */
    .drop-area {
        padding: 25px 15px;
        font-size: 16px;
        min-height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Make Buttons Larger for Touch */
    .convert-options select,
    .convert-options button {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
        margin-top: 12px;
    }
    
    /* Improve file item display on mobile */
    .file-item {
        padding: 12px 8px;
        font-size: 14px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .file-item button {
        margin-top: 8px;
        width: 100%;
        padding: 10px;
    }
    
    /* Make page title more mobile-friendly */
    h1 {
        font-size: 28px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    /* Better spacing for mobile buttons */
    #selectionButtons a button {
        padding: 15px 10px;
        font-size: 14px;
        margin: 0;
        height: 60px;
        width: 100%;
    }
    
    .selection-buttons {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
        margin-top: 15px;
        padding: 20px;
        max-width: 100%;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--stats-bg-start) 0%, var(--stats-bg-end) 100%);
    border-top: 1px solid var(--stats-border);
    border-bottom: 1px solid var(--stats-border);
    padding: 40px 0;
    margin-top: 60px;
    width: 100%;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.stats-container h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: var(--container-bg);
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.12);
    border: 2px solid rgba(56, 189, 248, 0.1);
    text-align: center;
    transition: background 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #38BDF8;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .stats-container {
        padding: 0 20px;
    }
    
    .stats-container h3 {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* Footer Section */
.footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    padding: 35px 0 30px;
    margin-top: 60px;
    width: 100%;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-company,
.footer-creator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.footer-contact,
.creator-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.footer-contact .footer-email {
    color: #38BDF8;
    font-weight: 600;
}

.creator-title .creator-name {
    color: #38BDF8;
    font-weight: 600;
}

.creator-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.footer-email {
    font-size: 16px;
    font-weight: 600;
    color: #38BDF8;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-company-social,
.footer-creator-social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #38BDF8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(56, 189, 248, 0.15);
}

.social-icon:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 25px 0 20px;
        margin-top: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-company,
    .footer-creator {
        text-align: center;
        min-width: auto;
        width: 100%;
    }
    
    .footer-company-social,
    .footer-creator-social {
        justify-content: center;
        gap: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}
