/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Prevent horizontal overflow */
* {
    max-width: 100%;
}

.main-content,
.hero-section,
.device-categories,
.process-section,
.service-cards,
.device-models-section {
    width: 100%;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 8px 0;
    font-size: 13px;
}

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

.header-top-left {
    display: flex;
    gap: 25px;
}

.header-top-right {
    display: flex;
    gap: 25px;
}

.header-top span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.header-top span:hover {
    color: #007bff;
}

.header-top a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.header-top a:hover {
    color: #007bff;
}

.header-top a i {
    font-size: 14px;
}

.header-main {
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.logo a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo a:hover {
    color: #333;
    text-decoration: none;
}

.logo sup {
    font-size: 12px;
    color: #666;
}

/* Modern Navigation Styles */
.modern-nav {
    display: flex;
    align-items: center;
}

.modern-nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.modern-nav-item {
    position: relative;
}

.modern-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s;
}

.modern-nav-link:hover::before {
    left: 100%;
}

.modern-nav-link:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
    transform: translateY(-1px);
}

.nav-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-mega-menu:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid #e9ecef;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    min-width: 750px;
    margin-top: 8px;
    overflow: hidden;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: flex;
    gap: 0;
    padding: 30px;
    min-height: auto;
}

.mega-menu-section {
    flex: 1;
    padding: 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 100%;
}

.mega-menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    flex: 1;
}

.mega-menu-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e9ecef, transparent);
}

.mega-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
    position: relative;
}

.mega-menu-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #007bff;
}

.mega-menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 12px;
    text-decoration: none;
    color: #333;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    min-width: 200px;
}

.mega-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.05), transparent);
    transition: left 0.5s;
}

.mega-menu-item:hover::before {
    left: 100%;
}

.mega-menu-item:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.02));
    border-color: rgba(0, 123, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.item-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #007bff;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mega-menu-item:hover .item-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-name {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.mega-menu-item:hover .item-name {
    color: #007bff;
}

.item-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

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

.btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-outline {
    background: transparent;
    color: #333;
}

.btn-outline:hover {
    background: #f8f9fa;
}

.btn-primary {
    background: #333;
    color: white;
    border-color: #333;
}

.btn-primary:hover {
    background: #555;
    border-color: #555;
}

/* Hero Section - New Modern Design */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

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

.hero-left {
    text-align: left;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 2px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

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

.btn-hero-secondary {
    background: transparent;
    color: #333;
    padding: 15px 30px;
    border: 2px solid #dee2e6;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-interactive {
    width: 100%;
    max-width: 450px;
}

.device-showcase {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.device-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.device-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.device-item:hover::before {
    transform: scaleX(1);
}

.device-item.laptop::before {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.device-item.phone::before {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.device-item.tablet::before {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.device-item.console::before {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.device-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.device-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.device-item.laptop .device-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.device-item.phone .device-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.device-item.tablet .device-icon {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.device-item.console .device-icon {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.device-item:hover .device-icon {
    transform: scale(1.1) rotate(5deg);
}

.device-info {
    text-align: center;
    flex: 1;
}

.device-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.device-price {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #007bff;
}

.device-status {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #28a745;
    font-size: 16px;
}


.trust-indicators {
    display: none; /* Masaüstünde gizle */
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.trust-item:hover .trust-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.trust-item span {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #e74c3c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 50px;
    color: #e74c3c;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-icon i {
    font-size: 35px;
    color: white;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: #666;
}

/* Info Cards Section */
.info-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-card-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.info-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.1) 100%);
}

.info-card-image i {
    font-size: 60px;
    color: white;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
}

.info-card:hover .info-card-image i {
    transform: scale(1.1);
}

.info-card-content {
    padding: 25px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.info-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: transform 0.3s;
}

.info-card:hover .info-badge {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e74c3c;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #e74c3c;
    bottom: -5px;
    left: 0;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #bdc3c7;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Modern Mobile Navigation Toggle */
.modern-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.modern-mobile-toggle:hover {
    background: rgba(0, 123, 255, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-line:not(:last-child) {
    margin-bottom: 4px;
}

.modern-mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.modern-mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.modern-mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Modern Mobile Menu */
.modern-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.modern-mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-mobile-menu.active .modern-mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mobile-menu-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.mobile-menu-logo {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-logo::before {
    content: '🔧';
    font-size: 20px;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.08), transparent);
    transition: left 0.6s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-item.active .mobile-nav-link::before {
    left: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-item.active .mobile-nav-link {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08) 0%, rgba(0, 123, 255, 0.03) 100%);
    color: #007bff;
    padding-left: 35px;
    border-left: 4px solid #007bff;
}

.mobile-nav-link .nav-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.mobile-nav-link .nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #007bff;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover .nav-icon {
    transform: scale(1.2);
}

.mobile-nav-link .nav-arrow {
    font-size: 12px;
    color: #666;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.mobile-nav-item.active .mobile-nav-link .nav-arrow {
    transform: rotate(180deg);
    color: #007bff;
}

.mobile-mega-menu {
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.mobile-nav-item.active .mobile-mega-menu {
    max-height: 800px;
    overflow-y: auto;
    border-left-color: #007bff;
}

.mobile-mega-sections {
    padding: 20px 0;
}

.mobile-mega-section {
    margin-bottom: 25px;
}

.mobile-mega-section:last-child {
    margin-bottom: 0;
}

.mobile-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 25px 12px;
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(0, 123, 255, 0.1);
    position: relative;
}

.mobile-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 25px;
    width: 30px;
    height: 2px;
    background: #007bff;
}

.mobile-mega-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-mega-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.mobile-mega-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.mobile-mega-item:hover::before {
    left: 100%;
}

.mobile-mega-item:hover {
    background: rgba(0, 123, 255, 0.05);
    color: #007bff;
    padding-left: 35px;
    transform: translateX(5px);
}

.mobile-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.mobile-mega-item:hover .mobile-item-icon {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.mobile-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.mobile-mega-item:hover .mobile-item-name {
    color: #007bff;
}

.mobile-item-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    opacity: 0.8;
}

.mobile-menu-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.mobile-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-cta-button:hover::before {
    left: 100%;
}

.mobile-cta-button.primary {
    background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.mobile-cta-button.secondary {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
}

.mobile-cta-button.secondary:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.mobile-cta-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mobile-cta-button:hover i {
    transform: scale(1.1);
}

/* Mobile Menu Scrollbar */
.modern-mobile-menu-content::-webkit-scrollbar {
    width: 4px;
}

.modern-mobile-menu-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.modern-mobile-menu-content::-webkit-scrollbar-thumb {
    background: rgba(0, 123, 255, 0.3);
    border-radius: 2px;
}

.modern-mobile-menu-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 123, 255, 0.5);
}

/* Hide desktop trust elements on all screen sizes except mobile */
@media (min-width: 769px) {
    /* Hide trust indicators on desktop */
    .trust-indicators {
        display: none !important;
    }
    
    /* Hide mobile trust features on desktop */
    .mobile-trust-features {
        display: none !important;
    }
    
    /* Hide mobile stats on desktop */
    .mobile-stats {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 950px) {
    /* Hide header buttons on mobile for index.php */
    body.index-page .header-buttons {
        display: none !important;
    }

    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-top-left,
    .header-top-right {
        gap: 15px;
    }

    .header-content {
        justify-content: space-between;
        align-items: center;
    }
    
    /* Show modern mobile menu toggle */
    .modern-mobile-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation on mobile */
    .modern-nav {
        display: none !important;
    }
    
    /* Hide mega menu on mobile */
    .mega-menu {
        display: none !important;
    }

    /* Move "Oyun & Eğlence" section to right side on mobile */
    .mobile-mega-sections {
        display: flex;
        flex-direction: column;
    }
    
    /* Reorder mobile menu sections for "Oyun & Eğlence" to appear on right */
    .mobile-mega-section:nth-child(1) {
        order: 1;
    }
    
    .mobile-mega-section:nth-child(2) {
        order: 2;
    }
    
    .mobile-mega-section:nth-child(3) {
        order: 3;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-icons {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-icon {
        width: 60px;
        height: 60px;
        padding: 15px;
    }

    .hero-icon i {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .services-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .info-card {
        margin: 0 10px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card {
        padding: 20px 15px;
    }

    .product-icon {
        width: 60px;
        height: 60px;
    }

    .product-icon i {
        font-size: 28px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Main Content */
.main-content {
    padding-top: 20px;
    background: white;
}

/* Hero Section - New Design */
.hero-section {
    padding: 40px 0;
    background: white;
}

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

.hero-left h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-icons {
    display: flex;
    gap: 15px;
}

.hero-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.hero-icon:hover {
    transform: scale(1.1);
}

.hero-icon.whatsapp {
    background: #25d366;
}

.hero-icon.customer {
    background: #ffa500;
}

.hero-icon.fast {
    background: #ff6b6b;
}

.hero-icon.device {
    background: #4ecdc4;
}

.service-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item i {
    font-size: 24px;
    color: #007bff;
    margin-top: 5px;
}

.service-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Device Categories */
.device-categories {
    padding: 40px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100px;
    height: 100px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.category-item:hover .category-image {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-image i {
    font-size: 40px;
    color: #666;
}

.category-item h3 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Service Cards - Modern Design */
.service-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.modern-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-service-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    min-height: 380px;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    transition: all 0.3s ease;
}

.modern-service-card.home-service::before {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.modern-service-card.business-service::before {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.modern-service-card.refurbished-service::before {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.modern-service-card.courier-service::before {
    background: linear-gradient(135deg, #17a2b8, #007bff);
}

.card-header {
    padding: 20px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transition: all 0.3s ease;
}

.modern-service-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.card-icon-wrapper i {
    font-size: 24px;
    color: #007bff;
    transition: all 0.3s ease;
}

.home-service .card-icon-wrapper i {
    color: #28a745;
}

.business-service .card-icon-wrapper i {
    color: #6f42c1;
}

.refurbished-service .card-icon-wrapper i {
    color: #fd7e14;
}

.courier-service .card-icon-wrapper i {
    color: #17a2b8;
}

.card-badge {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.home-service .card-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.business-service .card-badge {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.refurbished-service .card-badge {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
}

.courier-service .card-badge {
    background: linear-gradient(135deg, #17a2b8, #007bff);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.card-body {
    padding: 15px 20px 20px;
}

.card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #555;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list i {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    flex-shrink: 0;
}

.card-footer {
    padding: 0 20px 20px;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn i {
    transition: transform 0.3s ease;
}

.modern-btn:hover i {
    transform: translateX(5px);
}

.modern-btn.primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

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

.modern-btn.secondary {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: white;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.modern-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.4);
}

.modern-btn.success {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    color: white;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
}

.modern-btn.success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 126, 20, 0.4);
}

.modern-btn.info {
    background: linear-gradient(135deg, #17a2b8, #007bff);
    color: white;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.modern-btn.info:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

/* Modern Simple Buttons for Hero Section */
.modern-btn-simple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.modern-btn-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.modern-btn-simple:hover::before {
    left: 100%;
}

.modern-btn-simple.primary {
    background: #007bff;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
}

.modern-btn-simple.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.35);
}

.modern-btn-simple.secondary {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.modern-btn-simple.secondary:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.modern-btn-simple i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.modern-btn-simple:hover i {
    transform: scale(1.1);
}

/* Device Models Showcase Section */
.device-models-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.device-category {
    margin-bottom: 60px;
}

.device-category:last-child {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #007bff;
    position: relative;
}

.category-title i {
    font-size: 32px;
    color: #007bff;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.model-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.model-card:hover::before {
    transform: scaleX(1);
}

.model-image {
    height: 150px;
    overflow: hidden;
    position: relative;
}

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

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

.model-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.model-info {
    padding: 15px;
}

.model-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
}

.model-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.price-range {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Category-specific styling */
.device-category:nth-child(2) .category-title {
    border-bottom-color: #28a745;
}

.device-category:nth-child(2) .category-title i {
    color: #28a745;
}

.device-category:nth-child(2) .model-card::before {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.device-category:nth-child(2) .price-range {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.device-category:nth-child(3) .category-title {
    border-bottom-color: #fd7e14;
}

.device-category:nth-child(3) .category-title i {
    color: #fd7e14;
}

.device-category:nth-child(3) .model-card::before {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.device-category:nth-child(3) .price-range {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
}

.device-category:nth-child(4) .category-title {
    border-bottom-color: #6f42c1;
}

.device-category:nth-child(4) .category-title i {
    color: #6f42c1;
}

.device-category:nth-child(4) .model-card::before {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.device-category:nth-child(4) .price-range {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.device-category:nth-child(5) .category-title {
    border-bottom-color: #17a2b8;
}

.device-category:nth-child(5) .category-title i {
    color: #17a2b8;
}

.device-category:nth-child(5) .model-card::before {
    background: linear-gradient(135deg, #17a2b8, #007bff);
}

.device-category:nth-child(5) .price-range {
    background: linear-gradient(135deg, #17a2b8, #007bff);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.device-category:nth-child(6) .category-title {
    border-bottom-color: #dc3545;
}

.device-category:nth-child(6) .category-title i {
    color: #dc3545;
}

.device-category:nth-child(6) .model-card::before {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.device-category:nth-child(6) .price-range {
    background: linear-gradient(135deg, #dc3545, #c82333);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.device-category:nth-child(7) .category-title {
    border-bottom-color: #20c997;
}

.device-category:nth-child(7) .category-title i {
    color: #20c997;
}

.device-category:nth-child(7) .model-card::before {
    background: linear-gradient(135deg, #20c997, #17a2b8);
}

.device-category:nth-child(7) .price-range {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

/* Laptop Section */
.laptop-section {
    padding: 40px 0;
    background: white;
}

.laptop-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.laptop-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

/* Modern WhatsApp Fixed Button */
.whatsapp-modern {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    animation: modernPulse 3s infinite;
}

.whatsapp-modern a {
    background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.whatsapp-modern a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.whatsapp-modern a:hover::before {
    left: 100%;
}

.whatsapp-modern a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #1ea952 0%, #25d366 100%);
}

.whatsapp-modern-text {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.whatsapp-modern i {
    font-size: 24px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.whatsapp-modern a:hover i {
    transform: scale(1.1) rotate(5deg);
}

@keyframes modernPulse {
    0% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        max-width: none;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
        flex: 1;
        min-width: 140px;
    }
    
    /* Hero badge tek satır için */
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .hero-badge span {
        display: inline-block;
        white-space: nowrap;
    }
    
    /* Mobil için ek güven göstergeleri - sadece mobilde görünür */
    .mobile-trust-features {
        display: none !important;
    }
    
    .mobile-trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: #666;
    }
    
    .mobile-trust-item i {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        flex-shrink: 0;
    }
    
    /* Mobil için kompakt istatistikler - sadece mobilde görünür */
    .mobile-stats {
        display: none !important;
    }
    
    .mobile-stat {
        text-align: center;
        padding: 10px 5px;
    }
    
    .mobile-stat-number {
        font-size: 18px;
        font-weight: 700;
        color: #007bff;
        display: block;
        margin-bottom: 4px;
    }
    
    .mobile-stat-label {
        font-size: 10px;
        color: #666;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .hero-image {
        width: 320px;
        height: 240px;
    }
    
    .floating-card {
        font-size: 12px;
        padding: 12px 16px;
    }
    
    .floating-card.card-1 {
        top: 10px;
        right: -10px;
    }
    
    .floating-card.card-2 {
        bottom: 40px;
        left: -20px;
    }
    
    .floating-card.card-3 {
        top: 45%;
        right: -25px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .modern-service-card {
        margin: 0 10px;
    }
    
    .card-header {
        padding: 25px 25px 0;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .card-icon-wrapper i {
        font-size: 28px;
    }
    
    .card-body {
        padding: 15px 25px 25px;
    }
    
    .card-body h3 {
        font-size: 22px;
    }
    
    .card-body p {
        font-size: 15px;
    }
    
    .card-footer {
        padding: 0 25px 25px;
    }
    
    .modern-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .service-box {
        padding: 20px;
    }
    
    /* Modern WhatsApp Button Mobile Styles */
    .whatsapp-modern {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-modern a {
        padding: 14px 20px;
        font-size: 13px;
        gap: 10px;
        border-radius: 40px;
    }
    
    .whatsapp-modern-text {
        font-size: 13px;
        letter-spacing: 0.3px;
    }
    
    .whatsapp-modern i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    /* Mobil için ek güven göstergeleri göster */
    .mobile-trust-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px 0;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 12px;
        border: 1px solid #e9ecef;
    }
    
    /* Mobil için kompakt istatistikler göster */
    .mobile-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 25px 0;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-image {
        width: 280px;
        height: 200px;
    }
    
    .floating-card {
        font-size: 11px;
        padding: 10px 14px;
    }
    
    .floating-card i {
        font-size: 16px;
    }
    
    .floating-card.card-1 {
        top: 5px;
        right: -5px;
    }
    
    .floating-card.card-2 {
        bottom: 30px;
        left: -15px;
    }
    
    .floating-card.card-3 {
        top: 40%;
        right: -20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-image {
        width: 80px;
        height: 80px;
    }
    
    .category-image i {
        font-size: 30px;
    }
    
    .service-card {
        padding: 20px;
        min-height: 160px;
    }
    
    .card-content h3 {
        font-size: 16px;
    }
    
    .card-icon {
        font-size: 30px;
    }
    
    /* Device Models Section Responsive */
    .device-models-section {
        padding: 60px 0;
    }
    
    .category-title {
        font-size: 22px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .category-title i {
        font-size: 28px;
        padding: 12px;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .model-card {
        margin: 0 10px;
    }
    
    .model-info {
        padding: 20px;
    }
    
    .model-info h4 {
        font-size: 18px;
    }
    
    .model-info p {
        font-size: 13px;
    }
    
    .price-range {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* 3-Step Process Section - Compact Design */
.process-section {
    padding: 40px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.process-step:nth-child(1)::before {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.process-step:nth-child(2)::before {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.process-step:nth-child(3)::before {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.process-step:nth-child(1) .step-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.process-step:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    color: white;
}

.process-step:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: white;
}

.step-icon i {
    font-size: 22px;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 12px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #555;
}

.step-features li:last-child {
    margin-bottom: 0;
}

.step-features i {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    flex-shrink: 0;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    color: #007bff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

.process-step:nth-child(1) .step-time {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.2);
}

.process-step:nth-child(2) .step-time {
    color: #fd7e14;
    background: rgba(253, 126, 20, 0.1);
    border-color: rgba(253, 126, 20, 0.2);
}

.process-step:nth-child(3) .step-time {
    color: #6f42c1;
    background: rgba(111, 66, 193, 0.1);
    border-color: rgba(111, 66, 193, 0.2);
}

.step-time i {
    font-size: 10px;
}

.process-cta {
    text-align: center;
    margin-top: 30px;
}

.process-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.process-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.process-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.process-btn:hover i {
    transform: translateX(3px);
}

/* Additional responsive styles for device models */
@media (max-width: 768px) {
    .device-models-section {
        padding: 60px 0;
    }
    
    .category-title {
        font-size: 24px;
        gap: 12px;
    }
    
    .category-title i {
        font-size: 30px;
        padding: 12px;
    }
    
    .models-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    /* Process Section Responsive */
    .process-section {
        padding: 30px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 20px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .step-features li {
        font-size: 12px;
    }
    
    .process-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 25px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .process-steps {
        margin: 0 15px;
        gap: 15px;
    }
    
    .process-step {
        padding: 18px 12px;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .step-content h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .step-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .step-features {
        margin-bottom: 12px;
    }
    
    .step-features li {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .step-time {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .process-cta {
        margin-top: 25px;
    }
    
    .process-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Contact Page Hero Services Section */
.hero-services-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.hero-services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.hero-services-header {
    text-align: center;
    margin-bottom: 25px;
}

.hero-services-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.hero-services-header p {
    font-size: 14px;
    color: #666;
}

.hero-services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-service-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.hero-service-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-service-item:hover .hero-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.hero-service-content {
    flex: 1;
}

.hero-service-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.hero-service-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Contact Page Map Section - Enlarged */
.map-embed-square {
    height: 500px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.map-embed-square iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Page Social Links */
.social-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #1ea952);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-link.email {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .hero-services-card {
        padding: 25px 20px;
    }
    
    .hero-services-header h2 {
        font-size: 20px;
    }
    
    .hero-services-list {
        gap: 15px;
    }
    
    .hero-service-item {
        padding: 12px;
        gap: 12px;
    }
    
    .hero-service-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-service-content h4 {
        font-size: 14px;
    }
    
    .hero-service-content p {
        font-size: 12px;
    }
    
    .map-embed-square {
        height: 400px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-services-card {
        padding: 20px 15px;
    }
    
    .hero-services-header h2 {
        font-size: 18px;
    }
    
    .hero-services-header p {
        font-size: 13px;
    }
    
    .hero-service-item {
        padding: 10px;
        gap: 10px;
    }
    
    .hero-service-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-service-content h4 {
        font-size: 13px;
    }
    
    .hero-service-content p {
        font-size: 11px;
    }
    
    .map-embed-square {
        height: 350px;
    }
}
