/* CepShop - Ortak Stil Dosyası */

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #0f172a;
    color: #e2e8f0;
}

h1 { font-size: 2rem; line-height: 1.2; margin-top: 0; }
h2 { font-size: 1.75rem; line-height: 1.3; margin-top: 0; }
h3 { font-size: 1.25rem; line-height: 1.4; margin-top: 0; }
h4 { font-size: 1.1rem; line-height: 1.4; margin-top: 0; }
p  { font-size: 1rem; line-height: 1.6; }
li { font-size: 1rem; line-height: 1.6; }
a  { font-size: 1rem; }
.contact-heading { font-size: 1.1rem !important; color: #0084ff; margin-bottom: 0.5rem; }

.app-wrapper {
    max-width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0f172a 0%, #1a1f35 50%, #162548 100%);
}

/* Header */
header {
    background: linear-gradient(90deg, #1e293b 0%, #0f4c75 100%);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid #0084ff;
}

.header-content {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 15px !important;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #0084ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

nav ul a:hover,
nav ul a.active {
    color: #0084ff;
    text-shadow: 0 0 10px rgba(0, 132, 255, 0.5);
}

/* Main */
main {
    flex: 1;
    padding: 2rem 1.5rem;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-in;
}

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

/* Hero */
.hero {
    background: linear-gradient(135deg, #0084ff 0%, #00d4ff 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.3);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background-color: #1e293b;
    color: #0084ff;
    border: 2px solid #0084ff;
}

.btn-primary:hover {
    background-color: #0084ff;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.4);
    font-size: 1rem;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #0084ff;
    font-size: 1rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #1a1f35 0%, #0f4c75 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #0084ff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.3);
    border-color: #00d4ff;
}

.service-card h3 {
    color: #0084ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.service-card ul {
    list-style: none;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
    padding: 0;
    margin: 0;
}

.service-card li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 132, 255, 0.2);
}

.service-card li:last-child { border-bottom: none; }

.service-card li:before {
    content: "✓ ";
    color: #00d4ff;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: rgba(0, 132, 255, 0.1);
    border-left: 4px solid #0084ff;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    color: #00d4ff;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.feature-item h4 { color: #0084ff; margin-bottom: 0.5rem; }
.feature-item p  { color: #cbd5e1; font-size: 1rem; line-height: 1.5; }

/* Contact */
.contact-info {
    background: linear-gradient(135deg, #1a1f35 0%, #0f4c75 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #0084ff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item { display: flex; gap: 1rem; }
.contact-item i { color: #0084ff; width: 30px; height: 30px; flex-shrink: 0; }
.contact-item h4 { color: #0084ff; margin-bottom: 0.5rem; }
.contact-item p  { color: #cbd5e1; }

/* Trade */
.trade-section {
    margin-bottom: 3rem;
    background: rgba(0, 132, 255, 0.08);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(0, 132, 255, 0.2);
}

.trade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.trade-card {
    background: linear-gradient(135deg, #1a1f35 0%, #0f4c75 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #0084ff;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.trade-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.25);
}

.trade-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trade-card h3 { color: #0084ff; font-size: 1.2rem; margin-bottom: 0.8rem; font-weight: 600; }
.trade-card p  { color: #cbd5e1; font-size: 1rem; line-height: 1.6; margin-bottom: 1rem; flex-grow: 1; }

/* Repair Highlight */
.repair-highlight-section {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    border: 2px solid rgba(0, 132, 255, 0.3);
}

.repair-highlight-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.repair-card {
    background: linear-gradient(135deg, #1a1f35 0%, #0f4c75 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #0084ff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.repair-card::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.6s ease;
}

.repair-card:hover { transform: translateY(-8px); border-color: #00d4ff; box-shadow: 0 12px 35px rgba(0, 132, 255, 0.35); }
.repair-card:hover::before { left: 100%; }

.repair-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 28px;
    background: linear-gradient(135deg, rgba(0,132,255,0.2), rgba(0,212,255,0.2));
    color: #0084ff;
    transition: all 0.3s ease;
}

.repair-card:hover .repair-card-icon {
    background: linear-gradient(135deg, rgba(0,212,255,0.3), rgba(0,132,255,0.3));
    color: #00d4ff;
    transform: scale(1.1);
}

.repair-card h3 { color: #0084ff; font-size: 1.3rem; margin-bottom: 0.8rem; font-weight: 700; }
.repair-card:hover h3 { color: #00d4ff; }
.repair-card p  { color: #cbd5e1; margin-bottom: 1.5rem; line-height: 1.5; font-size: 1rem; }

.repair-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; padding: 0; margin: 0; }
.repair-card li { color: #cbd5e1; font-size: 1rem; padding-left: 1.5rem; position: relative; line-height: 1.4; }
.repair-card li::before { content: '→'; position: absolute; left: 0; color: #0084ff; font-weight: bold; transition: all 0.3s ease; }
.repair-card:hover li::before { color: #00d4ff; }
.repair-card:hover li { color: #e2e8f0; }

/* Footer */
footer {
    background: #0f0f1f;
    border-top: 2px solid #0084ff;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #94a3b8;
}

footer a { color: #0084ff; text-decoration: none; }
footer a:hover { color: #00d4ff; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 640px) {
    nav ul { gap: 1rem; font-size: 0.9rem; }
    .hero h1 { font-size: 1.8rem; }
    .hero p  { font-size: 1rem; }
    .cta-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
