/* ===== GENEL STILLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden !important;
    width: 100vw;
    margin: 0;
    padding: 0;
    min-width: 320px;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Mobil için ekstra kontroller */
@media screen and (max-width: 768px) {
    html {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
    
    body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
    }
    
    * {
        max-width: 100vw !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== BUTONLAR ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ff6b9d;
    border: 2px solid #ff6b9d;
}

.btn-secondary:hover {
    background: #ff6b9d;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.navbar {
    padding: 5px 0;
}

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

/* ===== LOGO STYLES ===== */
.main-logo {
    width: 125px;
    height: 115px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo {
    width: 100px;
    height: 92px;
    object-fit: contain;
    margin-bottom: 15px;
}

.admin-logo-img {
    width: 80px;
    height: 74px;
    object-fit: contain;
    margin-right: 10px;
}

.admin-login-logo {
    width: 150px;
    height: 138px;
    object-fit: contain;
    margin-bottom: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b9d;
}

.nav-link.btn-apply {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f4e4e8;
    padding-top: 140px;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

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

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b9d;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== HERO IMAGE ===== */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.hero-illustration {
    width: 300px;
    height: 300px;
    position: relative;
    overflow: visible;
}

.illustration-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 50%;
    opacity: 0.1;
}

.crown-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: #ff6b9d;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
    min-width: 120px;
}

.card-1 {
    top: 20%;
    left: 5%;
    color: #E4405F;
    animation-delay: 0s;
}

.card-2 {
    top: 70%;
    right: 5%;
    color: #000;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 15%;
    color: #FF0000;
    animation-delay: 2s;
}

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

/* Desktop için floating card ayarları */
@media (min-width: 1200px) {
    .card-1 {
        top: 15%;
        left: 0%;
    }
    
    .card-2 {
        top: 65%;
        right: 0%;
    }
    
    .card-3 {
        bottom: 15%;
        left: 10%;
    }
}

@media (min-width: 1400px) {
    .card-1 {
        top: 10%;
        left: -3%;
    }
    
    .card-2 {
        top: 60%;
        right: -3%;
    }
    
    .card-3 {
        bottom: 10%;
        left: 8%;
    }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.about, .features {
    padding: 100px 0;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #ff6b9d;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: #f4e4e8;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #ff6b9d;
}

.image-placeholder i {
    font-size: 60px;
    color: #ff6b9d;
    margin-bottom: 15px;
}

.image-placeholder p {
    color: #ff6b9d;
    font-weight: 600;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 80px 0;
    text-align: center;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: #ff6b9d;
}

.cta .btn-primary:hover {
    background: #f8f8f8;
}

/* ===== FOOTER ===== */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
}

.footer-section h3 {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #ff6b9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #c44569;
}

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

/* ===== BAŞVURU FORMU ===== */
.application-section {
    padding: 150px 0 80px;
    background: #f4e4e8;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

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

.application-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #333;
}

.application-header p {
    font-size: 1.2rem;
    color: #666;
}

.application-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.application-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.terms-link, .privacy-link {
    color: #ff6b9d;
    text-decoration: none;
}

.terms-link:hover, .privacy-link:hover {
    text-decoration: underline;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.info-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: bold;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.step p {
    color: #666;
    margin: 0;
}

.success-message, .error-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.error-message ul {
    margin: 0;
    padding-left: 20px;
}

/* ===== ADMIN PANEL ===== */
.admin-login-body {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.login-header h2 {
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    margin-bottom: 30px;
}

.login-form .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.admin-body {
    background: #f5f7fa;
    min-height: 100vh;
}

.admin-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-logo h2 {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logout-btn {
    color: #666;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.logout-btn:hover {
    background: #f0f0f0;
}

.admin-main {
    padding: 30px;
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
}

.admin-header-section {
    margin-bottom: 40px;
}

.admin-header-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.admin-header-section p {
    color: #666;
    font-size: 1.1rem;
}

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

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
}

.stat-icon.pending {
    background: linear-gradient(135deg, #ffa726, #ff9800);
}

.stat-icon.approved {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
}

.stat-icon.rejected {
    background: linear-gradient(135deg, #ef5350, #f44336);
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.stat-info p {
    color: #666;
    font-size: 0.9rem;
}

.filters {
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #666;
    background: white;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.applications-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.applicant-info strong {
    color: #333;
}

.instagram-link {
    color: #E4405F;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.instagram-link:hover {
    text-decoration: underline;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-beklemede {
    background: #fff3cd;
    color: #856404;
}

.status-onaylandi {
    background: #d4edda;
    color: #155724;
}

.status-reddedildi {
    background: #f8d7da;
    color: #721c24;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-action {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view {
    background: #e3f2fd;
    color: #1976d2;
}

.btn-edit {
    background: #fff3e0;
    color: #f57c00;
}

.btn-delete {
    background: #ffebee;
    color: #d32f2f;
}

.btn-action:hover {
    transform: scale(1.1);
}

.no-applications {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-applications i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ddd;
}

.no-applications h3 {
    margin-bottom: 10px;
    color: #333;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

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

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal-body {
    padding: 30px;
}

.application-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row strong {
    color: #333;
    margin-right: 10px;
}

.description-text {
    margin-top: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    line-height: 1.6;
    color: #666;
}

.character-count {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.character-count.warning {
    color: #ff9800;
}

.character-count.danger {
    color: #f44336;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header {
        height: 80px !important;
        width: 100%;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .main-logo {
        width: 60px !important;
        height: 55px !important;
    }
    
    .footer-logo {
        width: 70px;
        height: 64px;
    }
    
    .admin-logo-img {
        width: 60px;
        height: 55px;
    }
    
    .admin-login-logo {
        width: 100px;
        height: 92px;
    }
    
    .hero {
        padding-top: 90px;
        padding-bottom: 40px;
        min-height: auto;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .application-section {
        padding: 100px 0 60px;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .hero-illustration {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .floating-card {
        display: none !important;
        visibility: hidden;
        position: static;
    }
    
    .about {
        padding: 60px 0;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .features {
        padding: 60px 0;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .cta {
        padding: 60px 0;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .cta-content {
        padding: 0 15px;
    }
    
    .cta h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .footer {
        padding: 40px 0 15px;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 15px;
    }
    
    .application-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .application-form {
        padding: 25px 20px;
    }
    
    .application-header {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .application-header h1 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .filter-buttons {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .filter-btn {
        text-align: center;
    }
    
    .admin-nav {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .admin-main {
        padding: 20px 15px;
    }
    
    .table-responsive {
        font-size: 14px;
    }
    
    table th,
    table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    .header {
        height: 70px !important;
        overflow-x: hidden !important;
    }
    
    .main-logo {
        width: 50px !important;
        height: 46px !important;
    }
    
    .footer-logo {
        width: 50px;
        height: 46px;
    }
    
    .admin-logo-img {
        width: 45px;
        height: 41px;
    }
    
    .admin-login-logo {
        width: 80px;
        height: 74px;
    }
    
    .hero {
        padding-top: 80px;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    .hero-buttons .btn {
        max-width: 250px;
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .hero-illustration {
        width: 180px;
        height: 180px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .application-header h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 0.9rem;
    }
    
    .application-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .hero-container,
    .about-content,
    .features-grid,
    .cta-content,
    .footer-content,
    .application-container,
    .section-header {
        padding: 0 10px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }
}
