/**
 * İnovasyon Tax - Ana Stil Dosyası
 * Premium Mali Müşavirlik Web Sitesi
 */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #1a1a2e;
    --primary-dark: #0f0f1a;
    --secondary: #16213e;
    --accent: #d4af37;
    --accent-light: #e5c158;
    --accent-dark: #b8972f;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a14;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --text-white: #ffffff;
    --border: #e0e0e0;
    --success: #00b894;
    --error: #d63031;
    --warning: #fdcb6e;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-dark: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 5px 30px rgba(212, 175, 55, 0.3);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--accent);
}

.top-bar-right .slogan {
    color: var(--accent);
    font-weight: 500;
}

/* ===== Header ===== */
.header {
    background: var(--text-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-white);
    min-width: 280px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
    list-style: none;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--accent);
    padding-left: 25px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero-slider {
    min-height: var(--hero-height, 600px);
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: var(--hero-height, 600px);
    background-size: cover;
    background-position: center;
}

.hero-slider .swiper-pagination-bullet {
    background: var(--text-white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--accent);
    color: var(--primary);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.hero {
    background: var(--gradient-primary);
    min-height: var(--hero-height, 600px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero h1,
.hero-slider h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span,
.hero-slider h1 span {
    color: var(--accent);
}

.hero p,
.hero-slider p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}

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

/* Floating Elements */
.hero-float {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.float-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    color: var(--text-white);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-55%) translateX(10px);
    }
}

.float-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.float-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.float-card p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary);
}

.btn-dark {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== Section Styles ===== */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
}

/* ===== Services Section ===== */
.services-grid,
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 25px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 10;
    text-decoration: none;
}

.service-link:hover {
    gap: 12px;
    color: var(--accent);
}

/* ===== About Preview ===== */
.about-preview {
    background: var(--text-white);
}

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

.about-image {
    position: relative;
}

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

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-accent);
    color: var(--primary);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-badge .number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.about-badge span {
    font-size: 14px;
    font-weight: 600;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
}

.about-feature span {
    font-weight: 500;
    color: var(--primary);
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== Announcements Section ===== */
.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.announcement-card {
    background: var(--text-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.announcement-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-image i {
    font-size: 50px;
    color: var(--accent);
}

.announcement-content {
    padding: 25px;
}

.announcement-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.announcement-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.announcement-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.announcement-card h3 a:hover {
    color: var(--accent);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-primary);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

/* ===== Footer ===== */
.footer {
    position: relative;
}

.footer-wave {
    position: relative;
    margin-bottom: -5px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-main {
    background: var(--primary);
    padding: 60px 0;
}

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

.footer-col {
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo img {
    height: var(--logo-footer-height, 50px);
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.footer-address i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--accent);
}

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

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

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: var(--primary-dark);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== Page Header ===== */
.page-header {
    background: var(--gradient-primary);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    position: relative;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb i {
    font-size: 10px;
    color: var(--accent);
}

/* ===== About Page ===== */
.about-section {
    padding: var(--section-padding) 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.vm-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-accent);
}

.vm-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vm-card h3 i {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--text-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.team-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-info .title {
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.team-contact a:hover {
    color: var(--accent);
}

/* ===== Services Page ===== */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* ===== Service Detail ===== */
.service-detail-section {
    padding: var(--section-padding) 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.service-detail-content {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--accent);
    margin-bottom: 25px;
}

.service-detail-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--text-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.service-list li {
    margin-bottom: 10px;
}

.service-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.service-list a:hover,
.service-list a.active {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.service-list a i {
    color: var(--accent);
}

.contact-widget {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.contact-widget h3 {
    color: var(--text-white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.contact-widget p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 14px;
}

.contact-widget .btn {
    width: 100%;
}

/* ===== Announcements Page ===== */
.announcements-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* ===== Announcement Detail ===== */
.announcement-detail-section {
    padding: var(--section-padding) 0;
}

.announcement-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.announcement-detail-content {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.announcement-detail-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
}

.announcement-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.meta-item i {
    color: var(--accent);
    font-size: 16px;
}

.announcement-detail-body {
    line-height: 1.9;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 40px;
}

.announcement-detail-body p {
    margin-bottom: 20px;
}

.announcement-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
}

.announcement-detail-body h2,
.announcement-detail-body h3,
.announcement-detail-body h4 {
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.announcement-detail-body ul,
.announcement-detail-body ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.announcement-detail-body li {
    margin-bottom: 8px;
}

.announcement-detail-body blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--text-light);
}

.announcement-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.announcement-detail-body table th,
.announcement-detail-body table td {
    border: 1px solid var(--border);
    padding: 12px;
    text-align: left;
}

.announcement-detail-body table th {
    background: var(--bg-light);
    font-weight: 600;
}

.announcement-detail-body a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.announcement-detail-body a:hover {
    color: var(--accent);
}

.announcement-detail-footer {
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.share-section {
    margin-bottom: 25px;
}

.share-title {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

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

/* Announcement Sidebar */
.announcement-sidebar {
    position: sticky;
    top: 100px;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.category-list a i {
    color: var(--accent);
}

.category-list a.active i,
.category-list a:hover i {
    color: var(--accent);
}

.related-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.related-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-list a {
    display: block;
    transition: var(--transition);
}

.related-list a:hover {
    color: var(--accent);
}

.related-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-date i {
    color: var(--accent);
}

.related-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

.related-list a:hover .related-title {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .announcement-detail-grid {
        grid-template-columns: 1fr;
    }

    .announcement-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .announcement-detail-content {
        padding: 25px;
    }

    .announcement-meta-info {
        flex-direction: column;
        gap: 10px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }
}

/* ===== Contact Page ===== */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

.contact-form-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--text-light);
    font-size: 15px;
    display: block;
}

.contact-info-content a:hover {
    color: var(--accent);
}

/* Phone Item Styling */
.phone-contact-item {
    display: flex !important;
    flex-direction: column;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.phone-contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.phone-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 16px;
}

.phone-number {
    font-size: 15px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.phone-contact-item:hover .phone-label,
.phone-contact-item:hover .phone-number {
    color: var(--accent);
}

.map-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.map-card iframe {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    border: none;
}

/* ===== Alerts ===== */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(0, 184, 148, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 184, 148, 0.2);
}

.alert-error {
    background: rgba(214, 48, 49, 0.1);
    color: var(--error);
    border: 1px solid rgba(214, 48, 49, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-float {
        display: none;
    }

    .about-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .top-bar-content {
        justify-content: center;
    }

    .top-bar-right {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--text-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

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

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

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-badge {
        position: static;
        margin-top: 30px;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

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

/* ===== Logo Slider ===== */
.logos-slider {
    padding: 10px 0;
}

.logos-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    padding: 10px;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}