/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff88;
    --primary-dark: #00cc6a;
    --secondary-color: #000000;
    --background-dark: #000000;
    --card-background: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2a2a2a;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --danger-color: #ff4444;
    --grid-color: rgba(0, 255, 136, 0.05);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Grid Arka Plan */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    max-width: 60%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 0.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.nav-search {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 400px;
}

.search-form {
    position: relative;
    width: 70%;
}

.search-input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    background-color: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-input:focus {
    outline: none;
    background-color: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: var(--primary-dark);
}

.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.balance-display {
    background-color: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 700;
}

.user-dropdown-toggle:hover {
    background-color: rgba(0, 255, 136, 0.2);
}

.user-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.user-dropdown.active .user-dropdown-toggle i {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    z-index: 1000;
}

.user-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.user-dropdown-menu a:hover {
    background-color: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
}

.user-dropdown-menu a i {
    width: 16px;
    text-align: center;
}

.user-dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 0.5rem 0;
}

/* Currency Dropdown */
.currency-dropdown {
    position: relative;
}

.currency-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 700;
}

.currency-dropdown-toggle:hover {
    background-color: rgba(0, 255, 136, 0.2);
}

.currency-dropdown-toggle i:last-child {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.currency-dropdown.active .currency-dropdown-toggle i:last-child {
    transform: rotate(180deg);
}

.currency-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    z-index: 1000;
}

.currency-dropdown.active .currency-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.currency-dropdown-menu a:hover {
    background-color: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
}

.currency-dropdown-menu a i {
    width: 16px;
    text-align: center;
}

/* Hero Section */
.hero-section {
    padding: 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
    margin-top: -6rem;
    padding-top: 6rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 105vh;
    height: 105vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Info Card Section */
.info-card-section {
    position: relative;
    margin-top: -5.5rem;
    margin-bottom: 4rem;
    z-index: 10;
}

.info-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 990px;
    margin: 0 auto;
}

/* Info Card - No Background Variant */
.info-card-plain {
    backdrop-filter: none;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.15);
}

.info-card-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.info-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.info-card-text h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.info-card-text p {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.4;
}

.info-card-buttons {
    display: flex;
    gap: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 2.5rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(26, 26, 26, 0.9) 100%);
    margin: 2rem 0;
}

.cta-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Telegram CTA Section */
.telegram-cta-section {
    padding: 2rem 0;
    margin: 2rem 0;
}

.telegram-cta-box {
    max-width: 1300px;
    margin: 0 auto;
    background: var(--card-background);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.telegram-cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.3);
}

.telegram-cta-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.telegram-cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
    animation: pulse-telegram 2s ease-in-out infinite;
}

@keyframes pulse-telegram {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 136, 204, 0.6);
    }
}

.telegram-cta-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.telegram-cta-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.telegram-cta-button .btn {
    white-space: nowrap;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(0, 255, 136, 0.1);
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Section Title */
.section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Products Grid */
.products-section {
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-card {
    background-color: var(--card-background);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge-warning {
    background-color: var(--warning-color);
    color: var(--secondary-color);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Features Section */
.features-section {
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.feature-card h3 {
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 3rem auto;
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.form-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.form-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-text a:hover {
    text-decoration: underline;
}

/* Table Styles */
.table-container {
    background-color: var(--card-background);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background-color: rgba(0, 255, 136, 0.1);
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    color: var(--primary-color);
    font-weight: 600;
}

.table tbody tr:hover {
    background-color: rgba(0, 255, 136, 0.05);
}

/* Status Badges */
.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-active {
    background-color: rgba(0, 255, 136, 0.2);
    color: var(--success-color);
}

.status-pending {
    background-color: rgba(255, 170, 0, 0.2);
    color: var(--warning-color);
}

.status-inactive {
    background-color: rgba(255, 68, 68, 0.2);
    color: var(--danger-color);
}

/* Footer - Moved to footer.css */

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-danger {
    background-color: rgba(255, 68, 68, 0.1);
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
}

.alert-warning {
    background-color: rgba(255, 170, 0, 0.1);
    border: 1px solid var(--warning-color);
    color: var(--warning-color);
}

/* SweetAlert2 Custom Styling */
.swal2-popup {
    background-color: var(--card-background) !important;
    border: 1px solid var(--primary-color) !important;
}

.swal2-title {
    color: var(--text-primary) !important;
}

.swal2-html-container {
    color: var(--text-secondary) !important;
}

.swal2-confirm {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.swal2-cancel {
    background-color: var(--danger-color) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .navbar .container {
        max-width: 90%;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar .container {
        max-width: 95%;
        padding: 0.5rem 1rem;
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .nav-links {
        gap: 0.2rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .search-form {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar .container {
        max-width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-left {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-logo {
        text-align: center;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.6rem;
    }
    
    .nav-search {
        width: 100%;
        max-width: 100%;
    }
    
    .search-form {
        width: 100%;
    }
    
    .nav-right {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .currency-dropdown,
    .user-dropdown {
        width: 100%;
    }
    
    .currency-dropdown-toggle,
    .user-dropdown-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .btn-sm {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 80vh;
        height: auto;
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Info Card Mobile */
    .info-card {
        padding: 1rem;
        margin: 1rem 0 !important;
    }
    
    .info-card-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 1rem;
    }
    
    .info-card-icon {
        margin: 0 auto !important;
    }
    
    .info-card-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .info-card-buttons .btn {
        width: 100%;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Form Container Mobile */
    .form-container {
        margin: 6rem 1rem 2rem !important;
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    /* Table Mobile */
    .table-container {
        overflow-x: auto;
    }
    
    .table {
        min-width: 600px;
    }
    
    .table th,
    .table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    /* Section Title Mobile */
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    /* Telegram CTA Mobile */
    .telegram-cta-box {
        padding: 1.5rem;
    }
    
    .telegram-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .telegram-cta-icon {
        margin: 0 auto;
    }
    
    .telegram-cta-button .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .container {
        padding: 0 10px;
    }
    
    .navbar .container {
        padding: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .info-card {
        padding: 0.8rem;
    }
    
    .info-card-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    .info-card-text h3 {
        font-size: 0.95rem;
    }
    
    .info-card-text p {
        font-size: 0.7rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.8rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-control {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.85rem;
    }
}

/* Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 6rem 0 2rem;
    }
    
    .navbar .container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .nav-left {
        flex-direction: row;
        width: auto;
    }
    
    .nav-links {
        flex-direction: row;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .grid-background {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
    }
}
