/*
Theme Name: Yerel Çilingir Uzmanı
Theme URI: https://yerelcilingiruzmani.com
Description: Profesyonel Çilingir Platformu WordPress Teması
Version: 2.0.0
Author: Yerel Çilingir Uzmanı
Text Domain: yerel-cilingir
*/

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0F2C59;
    --secondary: #FF6B00;
    --bg: #F8F9FA;
    --white: #FFFFFF;
    --text: #1E293B;
    --gray-light: #E2E8F0;
    --border: #E2E8F0;
    --red: #EF4444;
    --green: #25D366;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

ul,
ol {
    list-style: none;
}

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

/* ===== HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 3px solid var(--secondary);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
}

.logo span {
    color: var(--secondary);
}

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

.menu a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.menu a:hover {
    color: var(--secondary);
}

.btn-reklam-nav {
    background: var(--secondary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-reklam-nav:hover {
    background: #e55d00;
    transform: translateY(-2px);
}

.header-phone {
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone svg,
.header-phone i {
    color: var(--secondary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 1.5rem;
}

/* ===== HERO MAIN (ANASAYFA) ===== */
.hero-main {
    background: linear-gradient(rgba(15, 44, 89, 0.85), rgba(15, 44, 89, 0.95)),
        url('assets/images/hero-bg.jpg') no-repeat center/cover;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.hero-main h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-main h1 span {
    color: var(--secondary);
}

.hero-main p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Hero Search Form */
.hero-search-form {
    background: white;
    padding: 15px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-search-form select {
    border: none;
    flex: 1;
    padding: 15px 20px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: #f8f9fa;
    border-radius: 25px;
    outline: none;
}

.hero-search-form button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0 40px;
    border-radius: 40px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
    transition: 0.3s;
}

.hero-search-form button:hover {
    background: #e55d00;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-features span svg {
    color: var(--secondary);
}

/* ===== STATS BAR ===== */
.stats-bar {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-container {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.grid-3,
.grid-4 {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.stat-item h3 {
    font-size: 3rem;
    margin: 0;
    color: var(--primary);
    font-weight: 900;
}

.stat-item p {
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 5px;
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-item .stat-icon svg {
    color: var(--secondary);
    width: 28px;
    height: 28px;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.bg-white {
    background: white;
}

.sec-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.sec-title span {
    color: var(--secondary);
}

.sec-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.about-image .experience-badge strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
}

.about-image .experience-badge span {
    font-size: 0.9rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0a1f40;
    transform: translateY(-3px);
}

/* ===== CARDS ===== */
.card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
    transition: 0.3s;
    box-shadow: var(--shadow);
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card .card-icon svg {
    color: var(--secondary);
    width: 32px;
    height: 32px;
}

.card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* ===== SERVICE LIST (Bölge Sayfaları) ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.service-item {
    background: white;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    transition: 0.3s;
}

.service-item:hover {
    border-color: var(--secondary);
    background: rgba(255, 107, 0, 0.02);
}

.service-item::before {
    content: '✔';
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.1rem;
}

/* ===== HERO SUB (Bölge Sayfaları) ===== */
.hero-sub {
    background: radial-gradient(circle at center, #1a3a6e 0%, var(--primary) 100%);
    padding: 60px 0 80px 0;
    text-align: center;
    color: white;
}

.hero-sub h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

/* ===== PROFILE CARD (Satış Sonrası) ===== */
.profile-card {
    background: white;
    color: #333;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid white;
    position: relative;
}

.pc-header {
    background: #f1f5f9;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    margin-bottom: 10px;
}

.pc-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.pc-title {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.pc-stats {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.pc-stat {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    border-right: 1px solid var(--border);
}

.pc-stat:last-child {
    border: none;
}

.stat-val {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}

.pc-actions {
    padding: 20px;
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-call {
    background: var(--primary);
    color: white;
}

.btn-call:hover {
    background: #0a1f40;
}

.btn-wa {
    background: #25D366;
    color: white;
}

.btn-wa:hover {
    background: #1ebc57;
}

/* ===== SALES CARD (Satış Öncesi) ===== */
.sales-card {
    background: #1e293b;
    color: white;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.4);
    border: 2px dashed var(--secondary);
    position: relative;
}

.sc-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge {
    background: rgba(255, 107, 0, 0.2);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid var(--secondary);
    display: inline-block;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.sc-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.sc-title span {
    color: var(--secondary);
}

.sc-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: 10px;
}

.benefits {
    padding: 25px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
}

.benefit {
    margin-bottom: 15px;
}

.benefit h3 {
    margin: 0;
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit p {
    margin: 5px 0 0 24px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.urgency {
    background: rgba(239, 68, 68, 0.2);
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fca5a5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1s infinite;
}

.btn-buy {
    display: block;
    width: 90%;
    margin: 20px auto;
    background: white;
    color: var(--primary);
    padding: 16px;
    border-radius: 8px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s;
}

.btn-buy:hover {
    transform: scale(1.02);
}

/* ===== MAP FRAME ===== */
.map-frame {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-frame.inactive {
    opacity: 0.7;
    filter: grayscale(100%);
}

/* ===== FAQ ===== */
.faq-item {
    background: white;
    border: 1px solid var(--border);
    margin-bottom: 10px;
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 20px;
    color: #555;
    background: #fafafa;
    margin: 0;
    border-top: 1px solid #eee;
}

/* ===== INFO BOXES (Fiyat & Servis) ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-box {
    padding: 30px;
    border-radius: 12px;
}

.info-box.dark {
    background: var(--primary);
    color: white;
}

.info-box.dark h3 {
    color: var(--secondary);
}

.info-box.bordered {
    background: white;
    border: 2px solid var(--secondary);
}

.info-box.bordered h3 {
    color: var(--primary);
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 15px;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pkg-card {
    background: white;
    text-align: center;
    border: 2px solid #eee;
    border-radius: var(--radius);
    padding: 30px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.pkg-card:hover,
.pkg-card.active {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
}

.pkg-card.active {
    position: relative;
}

.pkg-card.active::before {
    content: 'EN POPÜLER';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 15px;
    border-radius: 50px;
}

.pkg-card h4 {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pkg-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 15px 0;
}

.pkg-price span {
    font-size: 1rem;
    color: #94a3b8;
    display: block;
    font-weight: 500;
}

.pkg-features {
    text-align: left;
    margin: 20px 0;
}

.pkg-features li {
    padding: 8px 0;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

.pkg-card .btn-select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.pkg-card .btn-select {
    background: var(--primary);
    color: white;
}

.pkg-card.active .btn-select {
    background: var(--secondary);
}

/* ===== FORMS ===== */
.form-container {
    background: white;
    padding: 60px;
    border-radius: 30px;
    margin-top: 60px;
    box-shadow: var(--shadow);
}

.form-container h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

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

/* File Upload */
.upload-area {
    grid-column: span 2;
    padding: 30px;
    border: 2px dashed #ddd;
    border-radius: 20px;
    text-align: center;
}

.upload-area h4 {
    margin-bottom: 20px;
    color: var(--primary);
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.upload-item label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.upload-item input[type="file"] {
    width: 100%;
}

.btn-submit {
    grid-column: span 2;
    padding: 20px;
    border: none;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    background: var(--secondary);
    color: white;
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e55d00;
    transform: translateY(-3px);
}

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-cat {
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 25px;
}

.btn-more {
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-more:hover {
    color: var(--secondary);
}

/* ===== FOOTER ===== */


footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #94a3b8;
    margin-top: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* ===== MOBILE BAR ===== */
.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 12px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
    gap: 10px;
    z-index: 9999;
}

.mobile-bar .m-btn {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-bar .m-call {
    background: var(--primary);
}

.mobile-bar .m-wa {
    background: #25D366;
}

.mobile-bar .m-buy-btn {
    background: var(--secondary);
    width: 100%;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-bottom: 3px solid var(--secondary);
        box-shadow: var(--shadow);
    }

    .menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-main h1 {
        font-size: 2rem;
    }

    .hero-search-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
    }

    .hero-search-form button {
        padding: 15px;
        border-radius: 10px;
    }

    .grid-3,
    .grid-4,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .mobile-bar {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }

    .sec-title {
        font-size: 1.8rem;
    }

    .form-container {
        padding: 30px 20px;
    }
}

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

    .hero-main {
        padding: 60px 0;
    }

    .hero-main h1 {
        font-size: 1.6rem;
    }

    .stats-container {
        padding: 30px 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    section {
        padding: 50px 0;
    }

    .card {
        padding: 25px;
    }
}