/* Global Reset & Box Sizing */
:root {
    --primary: #1B3264;
    /* Deep Corporate Blue */
    --primary-dark: #0F2350;
    --secondary: #6B2482;
    /* Vibrant Purple */
    --accent: #E11D48;
    /* Red for Search Buttons */

    /* Card Colors based on reference */
    --card-gold: #C29A74;
    --card-purple: #A76B9C;
    --card-blue: #7096AB;
    --card-green: #7FA396;

    --background: #F8FAFC;
    --surface: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-light: #F1F5F9;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 12px -2px rgba(27, 50, 100, 0.15);
    --shadow-lg: 0 15px 25px -5px rgba(27, 50, 100, 0.2);
    --shadow-hover: 0 20px 40px -5px rgba(27, 50, 100, 0.3);

    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background: var(--primary);
    position: relative;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    color: white;
}

/* Unique Curved Header Bottom */
header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--primary);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    z-index: 900;
    pointer-events: none;
}

/* Intro Overlay */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    transition: opacity 1s ease, visibility 1s ease;
}

.intro-logo {
    font-size: 4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header & Mobile Visibility Fixes */
.header-top-bar {
    background: var(--primary-dark);
    padding: 0.75rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2005;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
    /* Allow wrapping on mobile */
}

/* Navbar & Mega Menu */
.nav-item {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    color: var(--text-main);
    width: 600px;
    /* Wide menu */
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    z-index: 2002;
    border-top: 4px solid var(--accent);
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-col h4 {
    color: var(--primary);
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.mega-col ul li {
    margin-bottom: 0.5rem;
}

.mega-col ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mega-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Floating WhatsApp */
.float-whatsapp {
    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: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 5000;
    transition: transform 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
        gap: 0.5rem;
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    position: relative;
    z-index: 2000;
    /* Ensure strict visibility */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 120px;
    margin-top: -30px;
    /* Pull up to stick out */
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    /* Glass effect */
    padding: 0.5rem 1.5rem;
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.nav-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: white !important;
    /* Force White */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    opacity: 1 !important;
}

.nav-link:hover {
    background: white;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 800px;
    /* Taller hero */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding-top: 60px;
    margin-bottom: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(27, 50, 100, 0.7) 0%, rgba(27, 50, 100, 0.3) 50%, rgba(248, 250, 252, 1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    margin-top: -100px;
}

.hero-slogan {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    color: white;
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    background: var(--accent);
    padding: 0.2rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* Search Bar in Hero */
.search-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 0.75rem;
    border-radius: 4rem;
    display: flex;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.1rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    background: var(--accent);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: scale(1.05);
    background: #BE123C;
}

/* Quick Actions Grid */
.quick-actions-section {
    position: relative;
    z-index: 20;
    margin-top: -150px;
    /* Overlap hero heavily */
    padding-bottom: 4rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

/* New Mayor Portrait Card */
.mayor-card {
    grid-row: span 2;
    /* 2 Rows Tall */
    height: 100%;
    min-height: 520px;
    /* Force Height */
    background: var(--primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
    transition: transform 0.3s ease;
}

.mayor-card:hover {
    transform: translateY(-5px);
}

.mayor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.mayor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(27, 50, 100, 0.95) 0%, rgba(27, 50, 100, 0.5) 70%, transparent 100%);
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    color: white;
}

.mayor-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.mayor-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
    background: var(--accent);
    padding: 0.2rem 0.8rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.action-card {
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 220px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.action-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.action-card span {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Specific Colors for Cards */
.bg-gold {
    background-color: var(--card-gold);
}

.bg-purple {
    background-color: var(--card-purple);
}

.bg-blue {
    background-color: var(--card-blue);
}

.bg-green {
    background-color: var(--card-green);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-accent {
    background-color: var(--secondary);
}

/* Main Content Area: News & President */
.main-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* News takes 2/3, Sidebar 1/3 */
    gap: 3rem;
    padding: 4rem 0;
}

/* Featured News */
.featured-news-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
}

.featured-news-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    color: white;
}

.date-badge {
    background: white;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.featured-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* President / Sidebar */
.president-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.president-img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.president-info {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.president-signature {
    font-family: 'Dancing Script', cursive;
    /* Optional fancy font */
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-btn.fb:hover {
    background: #1877F2;
}

.social-btn.tw:hover {
    background: #1DA1F2;
}

.social-btn.ins:hover {
    background: #E1306C;
}

/* Sub News Grid */
.sub-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.sub-news-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.sub-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sub-news-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.sub-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.sub-news-card:hover .sub-news-img img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.sub-news-content {
    padding: 1.5rem;
}

.sub-news-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

/* Campaign Card */
.bg-green-campaign {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    grid-column: span 1;
}

.bg-green-campaign i {
    color: #ECFDF5;
}

/* Project Tabs & Modern Grid */
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.project-tab {
    padding: 0.75rem 2rem;
    background: white;
    border: 1px solid var(--text-muted);
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.project-tab.active,
.project-tab:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.project-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card-modern {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-thumb {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-modern:hover .project-thumb img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-planned {
    background: var(--accent);
}

.badge-ongoing {
    background: var(--secondary);
}

.badge-completed {
    background: var(--card-green);
}

.project-details {
    padding: 1.5rem;
}

.project-details h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.btn-project {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.2rem;
}

/* Scrollable Announcements */
.announcement-list-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.announcement-list-scroll::-webkit-scrollbar {
    width: 6px;
}

.announcement-list-scroll::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
}

.announcement-item {
    background: #f8fafc;
    border-left: 4px solid var(--card-blue);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: background 0.3s;
}

.announcement-item:hover {
    background: #e2e8f0;
}

/* Mega Footer */
.mega-footer {
    background: var(--primary-dark);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 5rem;
}

.mega-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Social Media Strip */
.social-strip {
    background: var(--surface);
    padding: 4rem 0;
    text-align: center;
}

.social-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    justify-content: center;
}

.social-post {
    flex: 0 0 300px;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.social-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
    text-align: left;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-content-grid {
        grid-template-columns: 1fr;
    }

    .mega-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: auto;
        padding: 1rem 0;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content {
        margin-top: 0;
    }

    .action-grid {
        grid-template-columns: 1fr;
    }

    .mega-footer-grid {
        grid-template-columns: 1fr;
    }

    .sub-news-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        justify-content: flex-start;
    }

    .search-container {
        flex-direction: column;
        background: rgba(255, 255, 255, 0.9);
        padding: 1rem;
        border-radius: 1rem;
    }

    .search-btn {
        width: 100%;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        height: 50px;
    }

    .search-input {
        color: #333;
        padding: 0.5rem;
    }
}/ *   C a l e n d a r   * / 
 
 . e v e n t - c a l e n d a r   { 
 
         m a r g i n - t o p :   3 r e m ; 
 
         / *   A d d   s p a c i n g   * / 
 
         b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
 
         o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . c a l e n d a r - h e a d e r   { 
 
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
 
         c o l o r :   w h i t e ; 
 
         p a d d i n g :   1 . 5 r e m ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         f o n t - s i z e :   1 . 5 r e m ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
 } 
 
 
 
 . c a l e n d a r - g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 7 ,   1 f r ) ; 
 
         b a c k g r o u n d :   w h i t e ; 
 
 } 
 
 
 
 . d a y - n a m e   { 
 
         p a d d i n g :   1 r e m   0 ; 
 
         b a c k g r o u n d :   # f 1 f 5 f 9 ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         b o r d e r - r i g h t :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
 } 
 
 
 
 . c a l e n d a r - d a y   { 
 
         m i n - h e i g h t :   8 0 p x ; 
 
         p a d d i n g :   0 . 5 r e m ; 
 
         b o r d e r - r i g h t :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   b a c k g r o u n d   0 . 3 s ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . c a l e n d a r - d a y : h o v e r   { 
 
         b a c k g r o u n d :   # f 8 f a f c ; 
 
 } 
 
 
 
 . d a y - n u m b e r   { 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         f o n t - s i z e :   1 . 1 r e m ; 
 
         c o l o r :   v a r ( - - t e x t - m a i n ) ; 
 
         d i s p l a y :   b l o c k ; 
 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
 } 
 
 
 
 . d a y - e v e n t - d o t   { 
 
         w i d t h :   8 p x ; 
 
         h e i g h t :   8 p x ; 
 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y ) ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         m a r g i n :   0   a u t o ; 
 
 } 
 
 / *   C a l e n d a r   * / 
 
 . e v e n t - c a l e n d a r   { 
 
         m a r g i n - t o p :   3 r e m ; 
 
         / *   A d d   s p a c i n g   * / 
 
         b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
 
         o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . c a l e n d a r - h e a d e r   { 
 
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
 
         c o l o r :   w h i t e ; 
 
         p a d d i n g :   1 . 5 r e m ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         f o n t - s i z e :   1 . 5 r e m ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
 } 
 
 
 
 . c a l e n d a r - g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 7 ,   1 f r ) ; 
 
         b a c k g r o u n d :   w h i t e ; 
 
 } 
 
 
 
 . d a y - n a m e   { 
 
         p a d d i n g :   1 r e m   0 ; 
 
         b a c k g r o u n d :   # f 1 f 5 f 9 ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         b o r d e r - r i g h t :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
 } 
 
 
 
 . c a l e n d a r - d a y   { 
 
         m i n - h e i g h t :   8 0 p x ; 
 
         p a d d i n g :   0 . 5 r e m ; 
 
         b o r d e r - r i g h t :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   b a c k g r o u n d   0 . 3 s ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . c a l e n d a r - d a y : h o v e r   { 
 
         b a c k g r o u n d :   # f 8 f a f c ; 
 
 } 
 
 
 
 . d a y - n u m b e r   { 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         f o n t - s i z e :   1 . 1 r e m ; 
 
         c o l o r :   v a r ( - - t e x t - m a i n ) ; 
 
         d i s p l a y :   b l o c k ; 
 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
 } 
 
 
 
 . d a y - e v e n t - d o t   { 
 
         w i d t h :   8 p x ; 
 
         h e i g h t :   8 p x ; 
 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y ) ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         m a r g i n :   0   a u t o ; 
 
 } 
 
 
/* --- NEW STYLES FROM FEEDBACK --- */

/* Sticky Header & Mobile Fixes */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(27, 50, 100, 0.95);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-dark);
        display: flex;
        flex-direction: column;
        padding: 5rem 2rem;
        transition: 0.3s;
        overflow-y: auto;
        z-index: 2010;
        border-left: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: white !important;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        padding: 1rem 0;
        display: block;
    }

    .mega-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none; /* JS toggle needed or simple hover fix */
        transform: none;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        padding: 1rem;
        border: none;
        border-radius: var(--radius-md);
    }

    .nav-item:hover .mega-dropdown {
        display: block;
    }
}

/* Quick Menu Scrollable (Hızlı Menü) */
.quick-menu-wrapper {
    position: relative;
    margin-top: -60px;
    z-index: 100;
    padding-bottom: 3rem;
}

.box-heading {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--accent);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}

.quick-menu-container {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.quick-menu-item {
    flex: 0 0 160px;
    height: 140px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    cursor: pointer;
    text-decoration: none;
}

.quick-menu-item:hover {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.quick-menu-item .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.quick-menu-item:hover .icon {
    color: white;
}

.quick-menu-item .text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    transition: color 0.3s;
}

.quick-menu-item:hover .text {
    color: white;
}

/* Premium Calendar */
.calendar-premium-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
}

.cal-header-row {
    display: contents;
}

.cal-head-cell {
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.cal-body-cell {
    min-height: 100px;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 0.5rem;
    position: relative;
    transition: background 0.2s;
}

.cal-body-cell:hover {
    background: #f8fafc;
}

.cal-body-cell .num {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

/* Contact Split Layout */
.contact-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-left {
    background: var(--primary-dark);
    color: white;
    padding: 4rem;
}

.contact-right {
    background: white;
    padding: 4rem;
}

.contact-list ul {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-list .icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent);
}

.contact-list a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.form-contact-us input, .form-contact-us textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    background: #f8fafc;
}

.form-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}


/* ========================================
   ORDU STYLE - E-HİZMETLER & BAŞKAN
======================================== */

.ordu-style-section {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* E-Hizmet Grid Kutuları */
.e-hizmet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.e-hizmet-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    min-height: 130px;
}

.e-hizmet-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.e-hizmet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.purple-card {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
}

.teal-card {
    background: linear-gradient(135deg, #0097A7 0%, #26C6DA 100%);
}

/* Başkan Profil Kartı */
.baskan-profil-card {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
}

.baskan-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #5B2D8C 0%, #DB4D8A 100%);
}

.baskan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.baskan-info {
    padding: 1.5rem;
    text-align: center;
}

.baskan-signature {
    margin-bottom: 0.5rem;
}

.baskan-info h3 {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.baskan-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.baskan-title {
    font-size: 0.75rem;
    color: #888;
    display: block;
    margin-bottom: 1rem;
}

.baskan-ozgecmis {
    display: inline-block;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.baskan-ozgecmis:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91,45,140,0.4);
}

.baskan-sosyal {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.sosyal-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.sosyal-btn.facebook { background: #1877f2; }
.sosyal-btn.twitter { background: #1a1a1a; }
.sosyal-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

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

/* ========================================
   SERVİS TABS & GRID
======================================== */

.servis-tabs-section {
    margin: 2rem auto;
    padding: 0 1rem;
}

.servis-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.servis-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: #e9ecef;
    color: #495057;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.servis-tab.active,
.servis-tab:hover {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
}

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

.servis-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #1a73a8;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.servis-item i {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a73a8;
}

.servis-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #1a73a8;
}

/* ========================================
   DUYURU KUTULARI (ORDU STYLE)
======================================== */

.duyuru-kutulari-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border-radius: 24px;
}

.duyuru-column {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.duyuru-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f4f8;
}

.duyuru-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.tumu-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5B2D8C;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.tumu-link:hover {
    color: #DB4D8A;
}

.tumu-link i {
    font-size: 0.65rem;
}

.duyuru-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.duyuru-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f4f8;
}

.duyuru-item:hover {
    background: #f8f9fa;
    border-color: #5B2D8C;
    transform: translateX(5px);
}

.duyuru-tarih {
    min-width: 60px;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.duyuru-tarih .gun {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.duyuru-tarih .ay {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.purple-bg {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
}

.teal-bg {
    background: linear-gradient(135deg, #0097A7 0%, #26C6DA 100%);
}

.duyuru-icerik {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.duyuru-icerik p {
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.duyuru-icerik i {
    color: #ccc;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.duyuru-item:hover .duyuru-icerik i {
    color: #5B2D8C;
}

/* ========================================
   RESPONSIVE ORDU STYLE
======================================== */

@media (max-width: 1024px) {
    .ordu-style-section {
        grid-template-columns: 1fr;
    }
    
    .baskan-profil-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .duyuru-kutulari-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .e-hizmet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .servis-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .servis-tabs {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .e-hizmet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .e-hizmet-card {
        min-height: 100px;
        padding: 1rem;
    }
    
    .e-hizmet-card i {
        font-size: 1.5rem;
    }
    
    .e-hizmet-card span {
        font-size: 0.75rem;
    }
    
    .servis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .duyuru-kutulari-section {
        padding: 1.5rem;
    }
}

/* ========================================
   VEFAT EDENLER BÖLÜMÜ
======================================== */

.vefat-section {
    margin: 4rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.vefat-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.vefat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.vefat-title h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.bassagligi-mesaj {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.baskan-imza {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.imza-isim {
    font-weight: 700;
    color: #5B2D8C;
    font-size: 1.1rem;
}

.imza-unvan {
    font-size: 0.85rem;
    color: #888;
}

.vefat-search-bar {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.vefat-search-bar input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.vefat-search-bar input:focus {
    border-color: #5B2D8C;
}

.vefat-search-bar button {
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    transition: opacity 0.3s;
}

.vefat-search-bar button:hover {
    opacity: 0.9;
}

.vefat-table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.vefat-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.vefat-table th {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
    padding: 1rem 0.75rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.vefat-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #f0f4f8;
    font-size: 0.9rem;
    color: #333;
}

.vefat-table tbody tr:hover {
    background: #f8f9fa;
}

.vefat-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.vefat-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.vefat-pagination span {
    font-size: 0.9rem;
    color: #666;
}

.vefat-pagination select {
    padding: 0.4rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 0 0.5rem;
}

.pagination-buttons {
    display: flex;
    gap: 0.5rem;
}

.pagination-buttons button {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.pagination-buttons button:hover,
.pagination-buttons button.active {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
    border-color: #5B2D8C;
}

/* ========================================
   ŞEHİTLERİMİZ BÖLÜMÜ
======================================== */

.sehitler-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sehitler-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 L55 35 L85 40 L60 55 L70 85 L50 65 L30 85 L40 55 L15 40 L45 35 Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.sehitler-section .section-title h2 {
    color: #fff;
}

.sehitler-section .section-title h2 i {
    color: #c9302c;
    margin-right: 0.5rem;
}

.sehitler-section .section-title p {
    color: rgba(255,255,255,0.7);
}

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

.sehit-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sehit-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sehit-photo {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-photo {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-photo i {
    font-size: 2rem;
    color: rgba(255,255,255,0.3);
}

.sehit-bayrak {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #c9302c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sehit-bayrak i {
    color: white;
    font-size: 0.8rem;
}

.sehit-info {
    padding: 1.25rem;
}

.sehit-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.sehit-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.sehit-detail span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.sehit-detail i {
    margin-right: 0.3rem;
    color: #c9302c;
}

.sehit-sehadet {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sehit-sehadet span {
    font-size: 0.8rem;
}

.sehit-sehadet .tarih {
    color: rgba(255,255,255,0.8);
}

.sehit-sehadet .yer {
    color: #c9302c;
}

.sehit-sehadet i {
    margin-right: 0.3rem;
}

.btn-tumunu-gor {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #c9302c 0%, #a52422 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-tumunu-gor:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,48,44,0.4);
}

/* ========================================
   KABATAŞ HAKKINDA BİLGİ KARTLARI
======================================== */

.kabatas-bilgi-section {
    margin: 4rem auto;
}

.bilgi-kartlari-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.bilgi-kart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    min-height: 130px;
}

.bilgi-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91,45,140,0.15);
    border-color: #5B2D8C;
}

.bilgi-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.bilgi-icon i {
    color: white;
    font-size: 1.3rem;
}

.bilgi-kart h4 {
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.bilgi-kart.special-card .bilgi-icon {
    background: linear-gradient(135deg, #c9302c 0%, #a52422 100%);
}

.bilgi-kart.special-card-2 .bilgi-icon {
    background: linear-gradient(135deg, #555 0%, #333 100%);
}

/* ========================================
   ANKET BÖLÜMÜ
======================================== */

.anket-section {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 50%, #DB4D8A 100%);
    padding: 5rem 0;
}

.anket-container {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.anket-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.anket-header i {
    font-size: 3rem;
    color: #5B2D8C;
    margin-bottom: 1rem;
}

.anket-header h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.anket-header p {
    color: #666;
    font-size: 1rem;
}

.anket-form {
    max-width: 700px;
    margin: 0 auto;
}

.anket-soru {
    margin-bottom: 2rem;
}

.anket-soru > label {
    display: block;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.anket-secenekler {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.anket-secenek {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.anket-secenek:hover {
    background: #f0f4f8;
    border-color: #5B2D8C;
}

.anket-secenek input {
    display: none;
}

.anket-secenek .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
}

.anket-secenek input:checked ~ .checkmark {
    border-color: #5B2D8C;
    background: #5B2D8C;
}

.anket-secenek input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.anket-secenek input:checked ~ .secenek-text {
    color: #5B2D8C;
    font-weight: 600;
}

.secenek-text {
    font-size: 0.95rem;
    color: #333;
}

.secenek-text i {
    margin-right: 0.5rem;
    color: #5B2D8C;
}

.anket-input-group {
    margin-bottom: 1.25rem;
}

.anket-input-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.anket-input-group input,
.anket-input-group textarea,
.anket-input-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.anket-input-group input:focus,
.anket-input-group textarea:focus,
.anket-input-group select:focus {
    border-color: #5B2D8C;
}

.anket-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.anket-gonder-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.anket-gonder-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91,45,140,0.4);
}

.anket-sonuclar {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.anket-sonuclar h4 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.anket-sonuclar h4 i {
    color: #5B2D8C;
}

.sonuc-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.sonuc-label {
    width: 140px;
    font-size: 0.85rem;
    color: #555;
    flex-shrink: 0;
}

.bar-container {
    flex: 1;
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: linear-gradient(135deg, #5B2D8C 0%, #DB4D8A 100%);
    border-radius: 6px;
    transition: width 1s ease;
}

.sonuc-yuzde {
    width: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #5B2D8C;
    text-align: right;
}

.toplam-katilim {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
}

.toplam-katilim i {
    margin-right: 0.5rem;
    color: #5B2D8C;
}

/* ========================================
   RESPONSIVE - VEFAT, ŞEHİT, ANKET
======================================== */

@media (max-width: 1024px) {
    .hide-tablet {
        display: none;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    
    .vefat-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .vefat-search-bar {
        max-width: 100%;
    }
    
    .anket-secenekler {
        grid-template-columns: 1fr;
    }
    
    .anket-input-row {
        grid-template-columns: 1fr;
    }
    
    .anket-container {
        padding: 2rem 1.5rem;
    }
    
    .bilgi-kartlari-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sehit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vefat-section {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }
    
    .vefat-table th,
    .vefat-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .bilgi-kartlari-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .bilgi-kart {
        padding: 1rem 0.75rem;
        min-height: 110px;
    }
    
    .bilgi-icon {
        width: 40px;
        height: 40px;
    }
    
    .bilgi-icon i {
        font-size: 1rem;
    }
    
    .bilgi-kart h4 {
        font-size: 0.7rem;
    }
    
    .sehit-grid {
        grid-template-columns: 1fr;
    }
    
    .anket-secenek {
        padding: 0.75rem 1rem;
    }
    
    .secenek-text {
        font-size: 0.85rem;
    }
    
    .sonuc-label {
        width: 100px;
        font-size: 0.75rem;
    }
}

/* ========================================
   YENİ ETKİNLİKLER TAKVİMİ (Modern Design)
======================================== */

.etkinlikler-section {
    background: linear-gradient(135deg, #f8f4fc 0%, #fdf2f8 100%);
    padding: 5rem 0;
}

.etkinlik-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Mini Takvim */
.mini-takvim {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: fit-content;
}

.takvim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.takvim-header h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.takvim-nav {
    width: 36px;
    height: 36px;
    border: none;
    background: #f8f4fc;
    border-radius: 10px;
    cursor: pointer;
    color: #5B2D8C;
    transition: all 0.3s;
}

.takvim-nav:hover {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
}

.takvim-gunler {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.takvim-gunler span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    padding: 0.5rem 0;
}

.takvim-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.takvim-grid span {
    text-align: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
}

.takvim-grid span:hover {
    background: #f0e8f5;
}

.takvim-grid span.disabled {
    color: #ccc;
}

.takvim-grid span.today {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
    font-weight: 700;
}

.takvim-grid span.has-event {
    position: relative;
}

.takvim-grid span.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #DB4D8A;
    border-radius: 50%;
}

.takvim-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f4f8;
}

.takvim-legend span {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.takvim-legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.takvim-legend .today-dot {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
}

.takvim-legend .event-dot {
    background: #DB4D8A;
}

/* Etkinlik Listesi */
.etkinlik-liste {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.etkinlik-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.etkinlik-card:hover {
    transform: translateX(10px);
    border-color: #5B2D8C;
    box-shadow: 0 10px 30px rgba(91,45,140,0.15);
}

.etkinlik-tarih {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    min-width: 65px;
}

.etkinlik-tarih .gun {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.etkinlik-tarih .ay {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.etkinlik-detay {
    flex: 1;
}

.etkinlik-detay .kategori {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.kategori.sosyal {
    background: #e8f5e9;
    color: #2e7d32;
}

.kategori.kultur {
    background: #fff3e0;
    color: #ef6c00;
}

.kategori.halk {
    background: #e3f2fd;
    color: #1565c0;
}

.kategori.spor {
    background: #fce4ec;
    color: #c2185b;
}

.etkinlik-detay h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.etkinlik-detay p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.etkinlik-detay p i {
    margin-right: 0.25rem;
    color: #5B2D8C;
}

.etkinlik-detay p i:not(:first-child) {
    margin-left: 0.75rem;
}

.etkinlik-arrow {
    color: #ccc;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.etkinlik-card:hover .etkinlik-arrow {
    color: #5B2D8C;
    transform: translateX(5px);
}

.btn-tum-etkinlikler {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-tum-etkinlikler:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91,45,140,0.4);
}

/* Responsive Etkinlikler */
@media (max-width: 1024px) {
    .etkinlik-layout {
        grid-template-columns: 1fr;
    }
    
    .mini-takvim {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .etkinlik-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .etkinlik-tarih {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }
    
    .etkinlik-tarih .gun {
        font-size: 1.25rem;
    }
    
    .etkinlik-arrow {
        display: none;
    }
    
    .etkinlik-card:hover {
        transform: translateY(-5px);
    }
}

/* ========================================
   YENİ HIZLI MENÜ (Premium Design)
======================================== */

.hizli-menu-section {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 50%, #DB4D8A 100%);
    padding: 2.5rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 20;
}

.hizli-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hizli-menu-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hizli-menu-header h3 i {
    color: #ffd700;
}

.scroll-arrows {
    display: flex;
    gap: 0.5rem;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.scroll-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

.hizli-menu-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hizli-menu-grid::-webkit-scrollbar {
    display: none;
}

.hizli-menu-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    min-width: 130px;
    transition: all 0.3s ease;
}

.hizli-menu-card:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hizli-menu-card:hover .hm-icon {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
}

.hizli-menu-card:hover span {
    color: #1a1a2e;
}

.hm-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.hm-icon i {
    font-size: 1.3rem;
    color: white;
    transition: all 0.3s;
}

.hizli-menu-card:hover .hm-icon i {
    color: white;
}

.hizli-menu-card span {
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s;
}

/* Özel Kartlar */
.hizli-menu-card.sehit-card {
    background: rgba(201,48,44,0.4);
    border-color: rgba(201,48,44,0.5);
}

.hizli-menu-card.sehit-card .hm-icon {
    background: rgba(201,48,44,0.5);
}

.hizli-menu-card.sehit-card:hover {
    background: #c9302c;
}

.hizli-menu-card.sehit-card:hover .hm-icon {
    background: white;
}

.hizli-menu-card.sehit-card:hover .hm-icon i {
    color: #c9302c;
}

.hizli-menu-card.sehit-card:hover span {
    color: white;
}

.hizli-menu-card.anket-card {
    background: rgba(0,151,167,0.4);
    border-color: rgba(0,151,167,0.5);
}

.hizli-menu-card.anket-card .hm-icon {
    background: rgba(0,151,167,0.5);
}

.hizli-menu-card.anket-card:hover {
    background: #0097A7;
}

.hizli-menu-card.anket-card:hover .hm-icon {
    background: white;
}

.hizli-menu-card.anket-card:hover .hm-icon i {
    color: #0097A7;
}

.hizli-menu-card.anket-card:hover span {
    color: white;
}

.hizli-menu-card.vefat-card {
    background: rgba(70,70,70,0.4);
    border-color: rgba(100,100,100,0.5);
}

.hizli-menu-card.vefat-card .hm-icon {
    background: rgba(100,100,100,0.5);
}

.hizli-menu-card.vefat-card:hover {
    background: #444;
}

.hizli-menu-card.vefat-card:hover .hm-icon {
    background: white;
}

.hizli-menu-card.vefat-card:hover .hm-icon i {
    color: #444;
}

.hizli-menu-card.vefat-card:hover span {
    color: white;
}

/* Mobil Uyum - Hızlı Menü */
@media (max-width: 768px) {
    .hizli-menu-section {
        padding: 2rem 0;
        margin-top: -2rem;
    }
    
    .hizli-menu-header h3 {
        font-size: 1.1rem;
    }
    
    .hizli-menu-card {
        min-width: 110px;
        padding: 1rem 1.25rem;
    }
    
    .hm-icon {
        width: 42px;
        height: 42px;
    }
    
    .hm-icon i {
        font-size: 1.1rem;
    }
    
    .hizli-menu-card span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hizli-menu-card {
        min-width: 100px;
        padding: 0.75rem 1rem;
    }
    
    .hm-icon {
        width: 38px;
        height: 38px;
    }
    
    .scroll-arrows {
        display: none;
    }
}

/* ========================================
   MOBİL MENÜ İYİLEŞTİRMELERİ
======================================== */

/* Mobil Menü Toggle */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0;
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
        box-shadow: -10px 0 50px rgba(0,0,0,0.3);
    }
    
    .nav-menu .nav-item {
        width: 100%;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 1.5rem !important;
        color: white !important;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255,255,255,0.1);
        padding-left: 2rem !important;
    }
    
    .nav-menu .mega-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        border-radius: 0;
        padding: 0.5rem 0;
        display: none;
    }
    
    .nav-menu .nav-item:hover .mega-dropdown {
        display: block;
    }
    
    .nav-menu .mega-dropdown .mega-col {
        padding: 0.5rem 1rem;
    }
    
    .nav-menu .mega-dropdown h4 {
        color: var(--accent);
        font-size: 0.9rem;
    }
    
    .nav-menu .mega-dropdown ul li a {
        color: rgba(255,255,255,0.8);
        padding: 0.5rem 0;
    }
    
    .mobile-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
        width: 45px;
        height: 45px;
        align-items: center;
        justify-content: center;
        background: var(--accent);
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 1.25rem;
        transition: all 0.3s;
    }
    
    .mobile-toggle:hover {
        transform: scale(1.05);
    }
    
    /* Header Sticky Mobile */
    header.sticky .header-inner {
        padding: 0.75rem 1rem;
    }
    
    header.sticky .logo img {
        height: 45px !important;
    }
}

/* Tablet ve Küçük Ekranlar */
@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }
    
    .header-inner {
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        height: 45px !important;
    }
    
    .logo span:first-child {
        font-size: 1.2rem !important;
    }
    
    .logo span:last-child {
        font-size: 0.7rem !important;
    }
}

/* Overlay for Mobile Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

/* ========================================
   ETKİNLİKLER BÖLÜMÜ İYİLEŞTİRMELERİ
======================================== */

.etkinlikler-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.etkinlikler-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(91,45,140,0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.etkinlikler-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(219,77,138,0.1) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.etkinlikler-section .section-title h2 {
    color: white;
}

.etkinlikler-section .section-title p {
    color: rgba(255,255,255,0.7);
}

.etkinlik-layout {
    position: relative;
    z-index: 1;
}

.mini-takvim {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.mini-takvim .takvim-header h3 {
    color: white;
}

.mini-takvim .takvim-gunler span {
    color: rgba(255,255,255,0.5);
}

.mini-takvim .takvim-grid span {
    color: rgba(255,255,255,0.8);
}

.mini-takvim .takvim-grid span:hover {
    background: rgba(255,255,255,0.1);
}

.mini-takvim .takvim-grid span.disabled {
    color: rgba(255,255,255,0.2);
}

.mini-takvim .takvim-legend span {
    color: rgba(255,255,255,0.6);
}

.mini-takvim .takvim-legend {
    border-top-color: rgba(255,255,255,0.1);
}

.etkinlik-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.etkinlik-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: #5B2D8C;
}

.etkinlik-detay h4 {
    color: white;
}

.etkinlik-detay p {
    color: rgba(255,255,255,0.6);
}

.etkinlik-detay p i {
    color: var(--accent);
}

.etkinlik-arrow {
    color: rgba(255,255,255,0.3);
}

.etkinlik-card:hover .etkinlik-arrow {
    color: white;
}

.btn-tum-etkinlikler {
    margin-top: 2.5rem;
    text-align: center;
    display: inline-flex;
    position: relative;
    z-index: 1;
}

.etkinlikler-section .container {
    text-align: center;
}

.etkinlik-layout {
    text-align: left;
}

/* ========================================
   MOBİL MENÜ - YENİ TASARIM
======================================== */

/* Mobil Menü Overlay Fix */
@media (max-width: 992px) {
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #5B2D8C 0%, #3d1d5e 100%);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        right: 0;
        box-shadow: -15px 0 50px rgba(0,0,0,0.4);
    }
    
    /* Mobil Menü Logo Header */
    .nav-menu::before {
        content: '';
        display: block;
        width: 100%;
        height: 100px;
        background: linear-gradient(135deg, #7B4AAE 0%, #5B2D8C 100%);
        border-bottom: 3px solid var(--accent);
    }
    
    .nav-menu .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    
    .nav-menu .nav-link {
        display: flex !important;
        align-items: center;
        padding: 1.1rem 1.5rem !important;
        color: white !important;
        font-size: 0.95rem !important;
        font-weight: 500;
        background: transparent !important;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        background: rgba(255,255,255,0.1) !important;
        padding-left: 2rem !important;
    }
    
    /* Mega Dropdown Mobil */
    .nav-menu .mega-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        background: rgba(0,0,0,0.25);
        border-radius: 0;
        padding: 0;
        transition: max-height 0.4s ease, padding 0.4s ease;
        display: block !important;
    }
    
    .nav-menu .nav-item:hover .mega-dropdown,
    .nav-menu .nav-item.active .mega-dropdown {
        max-height: 500px;
        padding: 0.75rem 0;
    }
    
    .nav-menu .mega-dropdown .mega-col {
        padding: 0.5rem 1.5rem;
    }
    
    .nav-menu .mega-dropdown h4 {
        color: var(--accent) !important;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.25rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu .mega-dropdown ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .nav-menu .mega-dropdown ul li a {
        display: block;
        color: rgba(255,255,255,0.75) !important;
        padding: 0.4rem 0 !important;
        font-size: 0.85rem;
        transition: all 0.2s;
    }
    
    .nav-menu .mega-dropdown ul li a:hover {
        color: white !important;
        padding-left: 0.5rem !important;
    }
    
    /* Mobile Toggle Button */
    .mobile-toggle {
        display: flex !important;
        position: relative;
        z-index: 10001;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
        color: white;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        font-size: 1.4rem;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(91,45,140,0.3);
    }
    
    .mobile-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(91,45,140,0.4);
    }
    
    /* Header Mobil */
    .header-inner {
        padding: 0.75rem 1rem !important;
    }
    
    /* Logo Büyük */
    .logo img {
        height: 55px !important;
    }
    
    .logo span:first-of-type {
        font-size: 1.4rem !important;
    }
    
    .logo span:last-of-type {
        font-size: 0.8rem !important;
    }
    
    /* Header top bar hide */
    .header-top-bar {
        display: none !important;
    }
    
    /* Sticky Header Mobil */
    header.sticky .header-inner {
        padding: 0.5rem 1rem !important;
    }
    
    header.sticky .logo img {
        height: 48px !important;
    }
}

/* Daha küçük ekranlar */
@media (max-width: 576px) {
    .logo img {
        height: 50px !important;
    }
    
    .logo span:first-of-type {
        font-size: 1.25rem !important;
    }
    
    .logo span:last-of-type {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }
    
    .mobile-toggle {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    header.sticky .logo img {
        height: 42px !important;
    }
}

/* Desktop - Mobil Toggle gizle */
@media (min-width: 993px) {
    .mobile-toggle {
        display: none !important;
    }
}

/* ========================================
   YENİ PREMIUM HEADER TASARIMI
======================================== */

.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Top Bar */
.premium-header .header-top-bar {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    padding: 0.5rem 0;
}

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

.premium-header .top-bar-left {
    display: flex;
    gap: 1.5rem;
}

.premium-header .top-bar-left span {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
}

.premium-header .top-bar-left span i {
    margin-right: 0.4rem;
    color: var(--accent);
}

.premium-header .top-bar-right {
    display: flex;
    gap: 0.75rem;
}

.premium-header .top-bar-right a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    color: white;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.premium-header .top-bar-right a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Logo Section - White Background */
.header-logo-section {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-brand .logo-img {
    height: 70px;
    width: auto;
    transition: all 0.3s;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 2rem;
    font-weight: 900;
    color: #5B2D8C;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #DB4D8A;
    letter-spacing: 3px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91,45,140,0.3);
}

.header-phone i {
    font-size: 1rem;
}

/* Navigation Bar - Dark Blue */
.header-nav-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 0;
}

.header-nav-inner {
    display: flex;
    justify-content: center;
}

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

.header-nav-bar .nav-item {
    position: relative;
}

.header-nav-bar .nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.header-nav-bar .nav-link:hover {
    background: rgba(255,255,255,0.1);
    border-bottom-color: var(--accent);
}

.header-nav-bar .mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 500px;
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    padding: 1.5rem;
}

.header-nav-bar .nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav-bar .mega-dropdown .mega-col {
    flex: 1;
    padding: 0 1rem;
}

.header-nav-bar .mega-dropdown .mega-col h4 {
    color: #5B2D8C;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f4f8;
}

.header-nav-bar .mega-dropdown .mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-nav-bar .mega-dropdown .mega-col ul li a {
    display: block;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.header-nav-bar .mega-dropdown .mega-col ul li a:hover {
    color: #5B2D8C;
    padding-left: 0.5rem;
}

/* Sticky Header */
.premium-header.sticky .header-top-bar {
    display: none;
}

.premium-header.sticky .header-logo-section {
    padding: 0.5rem 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.premium-header.sticky .logo-brand .logo-img {
    height: 50px;
}

.premium-header.sticky .logo-title {
    font-size: 1.5rem;
}

.premium-header.sticky .logo-subtitle {
    font-size: 0.8rem;
}

/* Hero margin top for fixed header */
.hero {
    margin-top: 0;
    padding-top: 180px;
}

.premium-header.sticky + .hero,
.premium-header.sticky ~ .hero {
    padding-top: 130px;
}

/* RESPONSIVE - Premium Header */
@media (max-width: 1200px) {
    .header-nav-bar .nav-link {
        padding: 1rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .premium-header .header-top-bar {
        display: none;
    }
    
    .header-logo-section {
        padding: 0.75rem 0;
    }
    
    .logo-brand .logo-img {
        height: 55px;
    }
    
    .logo-title {
        font-size: 1.6rem;
    }
    
    .logo-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .header-phone {
        display: none;
    }
    
    .header-nav-bar {
        display: none;
    }
    
    .mobile-toggle {
        display: flex !important;
    }
    
    .hero {
        padding-top: 100px;
    }
}

@media (max-width: 576px) {
    .logo-brand .logo-img {
        height: 48px;
    }
    
    .logo-title {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .header-logo-section {
        padding: 0.5rem 0;
    }
    
    .mobile-toggle {
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   MENÜ DÜZELTMELERİ - OVERRIDE
======================================== */

/* Mobil Menü Tam Düzeltme */
@media (max-width: 992px) {
    /* Nav Menu Mobil */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: linear-gradient(180deg, #5B2D8C 0%, #3d1d5e 100%) !important;
        flex-direction: column !important;
        padding: 80px 0 20px 0 !important;
        gap: 0 !important;
        transition: right 0.4s ease !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: flex !important;
        list-style: none !important;
        margin: 0 !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-menu .nav-item {
        width: 100% !important;
        position: relative !important;
        display: block !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .nav-menu .nav-link {
        display: block !important;
        width: 100% !important;
        padding: 15px 20px !important;
        color: white !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        background: transparent !important;
        border: none !important;
        text-align: left !important;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255,255,255,0.1) !important;
    }
    
    /* Mega Dropdown Mobil - GİZLE */
    .nav-menu .mega-dropdown {
        display: none !important;
    }
    
    /* Mobile Toggle */
    .mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 46px !important;
        height: 46px !important;
        background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 10px !important;
        cursor: pointer !important;
        font-size: 1.3rem !important;
        z-index: 10001 !important;
        position: relative !important;
    }
    
    /* Header düzeltmeleri */
    .header-nav-bar {
        display: none !important;
    }
    
    .header-logo-section {
        padding: 10px 0 !important;
    }
    
    .header-logo-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .logo-brand {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        text-decoration: none !important;
    }
    
    .logo-brand .logo-img {
        height: 50px !important;
        width: auto !important;
    }
    
    .logo-title {
        font-size: 1.4rem !important;
        color: #5B2D8C !important;
        font-weight: 800 !important;
    }
    
    .logo-subtitle {
        font-size: 0.75rem !important;
        color: #DB4D8A !important;
        letter-spacing: 1.5px !important;
    }
    
    .header-phone {
        display: none !important;
    }
    
    .premium-header .header-top-bar {
        display: none !important;
    }
}

/* Desktop Menü Düzeltme */
@media (min-width: 993px) {
    .mobile-toggle {
        display: none !important;
    }
    
    .header-nav-bar {
        display: block !important;
    }
    
    .header-nav-bar .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        gap: 0 !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        position: static !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .header-nav-bar .nav-item {
        position: relative !important;
        display: inline-block !important;
    }
    
    .header-nav-bar .nav-link {
        display: block !important;
        padding: 1rem 1.25rem !important;
        color: white !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-bottom: 3px solid transparent !important;
        transition: all 0.3s !important;
    }
    
    .header-nav-bar .nav-link:hover {
        background: rgba(255,255,255,0.1) !important;
        border-bottom-color: var(--accent) !important;
    }
    
    /* Mega Dropdown Desktop */
    .header-nav-bar .mega-dropdown {
        display: flex !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        min-width: 450px !important;
        background: white !important;
        border-radius: 0 0 12px 12px !important;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(10px) !important;
        transition: all 0.3s ease !important;
        z-index: 1000 !important;
        padding: 1.5rem !important;
    }
    
    .header-nav-bar .nav-item:hover .mega-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .header-nav-bar .mega-dropdown .mega-col {
        flex: 1 !important;
        padding: 0 1rem !important;
    }
    
    .header-nav-bar .mega-dropdown .mega-col h4 {
        color: #5B2D8C !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.5rem !important;
        border-bottom: 2px solid #f0f4f8 !important;
    }
    
    .header-nav-bar .mega-dropdown .mega-col ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .header-nav-bar .mega-dropdown .mega-col ul li a {
        display: block !important;
        padding: 0.4rem 0 !important;
        color: #555 !important;
        font-size: 0.85rem !important;
        text-decoration: none !important;
        transition: all 0.2s !important;
    }
    
    .header-nav-bar .mega-dropdown .mega-col ul li a:hover {
        color: #5B2D8C !important;
        padding-left: 0.5rem !important;
    }
}

/* ========================================
   MEGA DROPDOWN DÜZELTME - ACIL OVERRIDE
======================================== */

/* Mega dropdown varsayılan olarak gizli */
.mega-dropdown {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}

/* Sadece hover'da göster */
.nav-item:hover > .mega-dropdown {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Desktop'ta mega dropdown */
@media (min-width: 993px) {
    .header-nav-bar .mega-dropdown {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        min-width: 400px !important;
        max-width: 500px !important;
        background: white !important;
        border-radius: 0 0 12px 12px !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
        padding: 1.25rem !important;
        z-index: 999 !important;
    }
    
    .header-nav-bar .nav-item:hover > .mega-dropdown {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
}

/* Mobil'de mega dropdown tamamen gizle */
@media (max-width: 992px) {
    .mega-dropdown {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .nav-item:hover > .mega-dropdown {
        display: none !important;
    }
}

/* ========================================
   ACİL MENÜ DÜZELTMESİ - TÜM SORUNLAR
======================================== */

/* Nav Menu pseudo elementlerini kaldır */
.nav-menu::before,
.nav-menu::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Mobil Menü - TEK KURALLAR */
@media (max-width: 992px) {
    /* Mobil menü container */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
        width: 280px !important;
        height: 100% !important;
        height: 100vh !important;
        background: #5B2D8C !important;
        display: flex !important;
        flex-direction: column !important;
        padding-top: 70px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        z-index: 99999 !important;
        transition: right 0.35s ease !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3) !important;
    }
    
    /* Menü açık durumu */
    .nav-menu.active {
        right: 0 !important;
    }
    
    /* Nav item */
    .nav-menu .nav-item {
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.15) !important;
        position: relative !important;
    }
    
    /* Nav link */
    .nav-menu .nav-item .nav-link {
        display: block !important;
        padding: 16px 24px !important;
        color: #fff !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        background: transparent !important;
        width: 100% !important;
        text-align: left !important;
        border: none !important;
    }
    
    .nav-menu .nav-item .nav-link:hover,
    .nav-menu .nav-item .nav-link:active {
        background: rgba(255,255,255,0.1) !important;
    }
    
    /* Mega dropdown mobilde GİZLE */
    .nav-menu .mega-dropdown,
    .mega-dropdown {
        display: none !important;
        position: absolute !important;
        left: -99999px !important;
        width: 0 !important;
        height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        overflow: hidden !important;
    }
    
    /* Mobile toggle butonu */
    .mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 48px !important;
        background: #5B2D8C !important;
        color: white !important;
        border: none !important;
        border-radius: 8px !important;
        font-size: 22px !important;
        cursor: pointer !important;
        z-index: 100000 !important;
        position: relative !important;
    }
    
    /* Header nav bar gizle */
    .header-nav-bar {
        display: none !important;
    }
    
    /* Logo section */
    .header-logo-section {
        background: white !important;
        padding: 12px 0 !important;
        position: relative !important;
        z-index: 100 !important;
    }
    
    .header-logo-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    /* Logo */
    .logo-brand {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        text-decoration: none !important;
    }
    
    .logo-brand .logo-img {
        height: 52px !important;
        width: auto !important;
    }
    
    .logo-text {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .logo-title {
        font-size: 1.5rem !important;
        font-weight: 800 !important;
        color: #5B2D8C !important;
        line-height: 1 !important;
    }
    
    .logo-subtitle {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        color: #DB4D8A !important;
        letter-spacing: 2px !important;
    }
    
    /* Header actions */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    .header-phone {
        display: none !important;
    }
    
    /* Top bar gizle */
    .header-top-bar {
        display: none !important;
    }
}

/* Desktop için mobile toggle gizle */
@media (min-width: 993px) {
    .mobile-toggle {
        display: none !important;
    }
    
    .nav-menu::before,
    .nav-menu::after {
        display: none !important;
        content: none !important;
    }
}

/* ========================================
   YENİ HEADER VE MOBİL MENÜ SİSTEMİ
======================================== */

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Top Bar */
.site-header .top-bar {
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    gap: 20px;
}

.top-bar-content span {
    color: white;
    font-size: 13px;
}

.top-bar-content span i {
    margin-right: 6px;
    color: #DB4D8A;
}

/* Main Header */
.main-header {
    background: white;
    padding: 12px 0;
}

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

/* Site Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.site-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-logo .logo-text strong {
    font-size: 1.8rem;
    color: #5B2D8C;
    font-weight: 900;
}

.site-logo .logo-text span {
    font-size: 0.9rem;
    color: #DB4D8A;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Desktop Nav */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    display: block;
    padding: 10px 18px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.desktop-nav ul li a:hover {
    background: #5B2D8C;
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    background: #5B2D8C;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, #5B2D8C 0%, #3d1d5e 100%);
    z-index: 10000;
    transition: right 0.35s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header img {
    height: 45px;
}

.close-menu {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 30px;
}

.mobile-nav a i {
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

.mobile-nav a.special-red {
    background: rgba(201,48,44,0.3);
    border-color: rgba(201,48,44,0.4);
}

.mobile-nav a.special-teal {
    background: rgba(0,151,167,0.3);
    border-color: rgba(0,151,167,0.4);
}

.mobile-nav a.special-gray {
    background: rgba(100,100,100,0.3);
    border-color: rgba(100,100,100,0.4);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Hero offset for fixed header */
.hero {
    margin-top: 0;
    padding-top: 140px !important;
}

/* Responsive */
@media (max-width: 992px) {
    .site-header .top-bar {
        display: none;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .site-logo img {
        height: 50px;
    }
    
    .site-logo .logo-text strong {
        font-size: 1.5rem;
    }
    
    .site-logo .logo-text span {
        font-size: 0.75rem;
    }
    
    .hero {
        padding-top: 100px !important;
    }
}

@media (max-width: 576px) {
    .site-logo img {
        height: 42px;
    }
    
    .site-logo .logo-text strong {
        font-size: 1.3rem;
    }
    
    .site-logo .logo-text span {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* ========================================
   ::AFTER VE ::BEFORE TAMAMEN KALDIR
======================================== */

.site-header *::before,
.site-header *::after,
.main-header *::before,
.main-header *::after,
.header-flex *::before,
.header-flex *::after,
.desktop-nav *::before,
.desktop-nav *::after,
.site-logo *::before,
.site-logo *::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* ========================================
   DESKTOP NAV - DROPDOWN MENÜLER
======================================== */

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

.desktop-nav ul li {
    position: relative;
}

.desktop-nav ul li > a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.desktop-nav ul li > a:hover {
    background: #5B2D8C;
    color: white;
}

/* Dropdown Menü */
.desktop-nav ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.desktop-nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav ul li .dropdown a {
    display: block;
    padding: 10px 20px;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.desktop-nav ul li .dropdown a:hover {
    background: #f5f0fa;
    color: #5B2D8C;
    padding-left: 25px;
}

.desktop-nav ul li .dropdown a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
    color: #5B2D8C;
}

/* ========================================
   HEADER ::AFTER - ŞEFFAF GEÇİŞ EFEKTİ
======================================== */

/* Header - eski after kaldır */
header::after,
.site-header::after,
.main-header::after,
.premium-header::after {
    display: none !important;
    content: none !important;
}

/* Yeni güzel gölge efekti - box-shadow ile */
.site-header {
    box-shadow: 0 4px 30px rgba(91, 45, 140, 0.08) !important;
}

.site-header .main-header {
    background: white;
    position: relative;
}

/* Header altına yumuşak mor geçiş çizgisi */
.site-header .main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5B2D8C, #DB4D8A, #5B2D8C);
    opacity: 0.6;
}

/* Sticky modda gölge artır */
.site-header.sticky {
    box-shadow: 0 8px 40px rgba(0,0,0,0.12) !important;
}

.site-header.sticky .main-header::after {
    opacity: 1;
}

/* ========================================
   MOBİL MENÜ - ACCORDION ALT MENÜLER
======================================== */

.mobile-menu-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

.mobile-menu-toggle i:first-child {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.mobile-menu-toggle .arrow {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s;
}

.mobile-menu-item.open .mobile-menu-toggle .arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
    transition: max-height 0.35s ease;
}

.mobile-menu-item.open .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu a {
    display: block;
    padding: 12px 24px 12px 56px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s;
}

.mobile-submenu a:hover {
    background: rgba(255,255,255,0.05);
    color: white;
    padding-left: 62px;
}

.mobile-submenu a:last-child {
    border-bottom: none;
}

.mobile-single-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-single-link:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-single-link i {
    width: 20px;
    text-align: center;
}

/* ========================================
   MOBİL MENÜ BUTONU - LOGO + HAMBURGER
======================================== */

.mobile-menu-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(91,45,140,0.25);
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(91,45,140,0.35);
}

.mobile-menu-btn .btn-logo {
    height: 32px;
    width: auto;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.hamburger-lines span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger-lines span:nth-child(2) {
    width: 75%;
}

/* Hover efekti */
.mobile-menu-btn:hover .hamburger-lines span:nth-child(2) {
    width: 100%;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn .btn-logo {
        height: 28px;
    }
    
    .hamburger-lines {
        width: 20px;
        gap: 4px;
    }
    
    .hamburger-lines span {
        height: 2.5px;
    }
}

/* ========================================
   INTRO OVERLAY - WAW EFFECT
======================================== */

#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-content {
    text-align: center;
}

#intro-overlay .intro-logo {
    width: 120px;
    height: auto;
    animation: logoPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(91,45,140,0.5));
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.intro-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 1.5rem 0 0.5rem;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.intro-title span {
    display: inline-block;
    animation: letterWave 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.intro-title span:nth-child(1) { animation-delay: 0.1s; }
.intro-title span:nth-child(2) { animation-delay: 0.2s; }
.intro-title span:nth-child(3) { animation-delay: 0.3s; }
.intro-title span:nth-child(4) { animation-delay: 0.4s; }
.intro-title span:nth-child(5) { animation-delay: 0.5s; }
.intro-title span:nth-child(6) { animation-delay: 0.6s; }
.intro-title span:nth-child(7) { animation-delay: 0.7s; }

@keyframes letterWave {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-subtitle {
    font-size: 1.2rem;
    color: #DB4D8A;
    letter-spacing: 8px;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to { opacity: 1; }
}

.intro-loader {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #5B2D8C, #DB4D8A, #5B2D8C);
    border-radius: 10px;
    animation: loading 2s ease forwards;
}

@keyframes loading {
    to { width: 100%; }
}

.intro-slogan {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    animation: fadeInUp 0.8s ease 1.5s forwards;
    opacity: 0;
}

/* ========================================
   MOBİL ARAMA ALANI DÜZELTMESİ
======================================== */

@media (max-width: 768px) {
    .hero {
        padding-top: 100px !important;
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-slogan {
        font-size: 0.9rem !important;
        letter-spacing: 2px !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-content h1 span {
        font-size: 2.2rem !important;
    }
    
    .search-container {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .search-input {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }
    
    .search-btn {
        width: 100% !important;
        padding: 14px 20px !important;
        border-radius: 12px !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem !important;
    }
    
    .hero-content h1 span {
        font-size: 1.8rem !important;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
    
    .intro-subtitle {
        font-size: 1rem;
        letter-spacing: 4px;
    }
}

/* ========================================
   MOBİL MENÜ BUTONU - DÜZELTME
======================================== */

.mobile-menu-btn {
    display: none !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(91,45,140,0.3);
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

.mobile-menu-btn svg {
    display: block;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex !important;
    }
}

/* ========================================
   MOBİL DÜZELTMELERİ - BİZE ULAŞIN, E-BELEDİYE, INTRO
======================================== */

/* INTRO - Logo Ortada */
#intro-overlay {
    text-align: center;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

#intro-overlay .intro-logo {
    margin: 0 auto;
    display: block;
}

.intro-title {
    justify-content: center;
    width: 100%;
}

/* E-BELEDİYE İkonları Mobil */
@media (max-width: 768px) {
    .servis-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    
    .servis-item {
        padding: 15px 10px !important;
        font-size: 11px !important;
    }
    
    .servis-item i {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
    }
    
    .servis-item span {
        font-size: 10px !important;
        line-height: 1.3 !important;
    }
    
    .servis-tabs {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    
    .servis-tab {
        padding: 10px 15px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .servis-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* BİZE ULAŞIN - Contact Section Mobil */
@media (max-width: 992px) {
    .contact-split-section {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .contact-left,
    .contact-right {
        width: 100% !important;
        padding: 30px !important;
    }
    
    .contact-left h2 {
        font-size: 1.8rem !important;
    }
    
    .contact-left p {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .contact-split-section {
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    .contact-left,
    .contact-right {
        padding: 25px 20px !important;
    }
    
    .contact-left {
        text-align: center;
    }
    
    .contact-left h2 {
        font-size: 1.5rem !important;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px !important;
        font-size: 14px !important;
    }
    
    .contact-form button {
        width: 100% !important;
        padding: 14px !important;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .contact-info-item {
        padding: 15px !important;
    }
}

/* Footer Mobil */
@media (max-width: 768px) {
    .mega-footer {
        padding: 40px 20px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }
    
    .footer-col h4 {
        margin-bottom: 15px !important;
    }
    
    .footer-col ul {
        padding: 0 !important;
    }
}

/* Kabataş Hakkında Kartları Mobil */
@media (max-width: 768px) {
    .bilgi-kartlari-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .bilgi-kart {
        padding: 20px 15px !important;
    }
    
    .bilgi-kart h4 {
        font-size: 12px !important;
    }
    
    .bilgi-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .bilgi-icon i {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .bilgi-kartlari-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Projeler Mobil */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Haberler Mobil */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr !important;
    }
    
    .tab-btn {
        padding: 10px 15px !important;
        font-size: 13px !important;
    }
}

/* Etkinlikler Mobil */
@media (max-width: 768px) {
    .etkinlik-layout {
        grid-template-columns: 1fr !important;
    }
    
    .mini-takvim {
        display: none !important;
    }
}

/* Hızlı Menü Mobil */
@media (max-width: 768px) {
    .hizli-menu-section {
        padding: 1.5rem 0 !important;
    }
    
    .hizli-menu-card {
        min-width: 100px !important;
        padding: 1rem !important;
    }
    
    .hm-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .hizli-menu-card span {
        font-size: 11px !important;
    }
}

/* ========================================
   ARAMA ALANI - MOBİL DÜZELTMESİ
======================================== */

.search-container {
    display: flex;
    max-width: 600px;
    margin: 2rem auto 0;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.search-input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: white;
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    padding: 18px 30px;
    background: linear-gradient(135deg, #5B2D8C 0%, #7B4AAE 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: linear-gradient(135deg, #7B4AAE 0%, #5B2D8C 100%);
}

/* Mobil Arama */
@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
        border-radius: 20px;
        margin: 1.5rem 15px 0;
        max-width: calc(100% - 30px);
        background: rgba(255,255,255,0.95);
        box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    }
    
    .search-input {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
        text-align: center;
        border-radius: 20px 20px 0 0;
        background: white;
        color: #333;
    }
    
    .search-input::placeholder {
        color: #666;
        font-weight: 500;
    }
    
    .search-btn {
        width: 100%;
        padding: 14px 20px;
        border-radius: 0 0 20px 20px;
        font-size: 16px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .search-container {
        margin: 1rem 10px 0;
        max-width: calc(100% - 20px);
    }
    
    .search-input {
        padding: 14px 15px;
        font-size: 14px;
    }
    
    .search-input::placeholder {
        font-size: 13px;
    }
    
    .search-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
}
