/**
 * TemaTwo Theme Styles
 * Modern, clean ve professional tasarÄ±m
 */

/* ============================================
   CSS VARIABLES - TEMA TWO COLOR PALETTE
   ============================================ */
:root {
    --primary: #1a6fc4;
    --secondary: #0d4d8c;
    --accent: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --text: #1e293b;
    --gray: #64748b;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --shadow-xl: rgba(0, 0, 0, 0.2);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ============================================
   SLIDER CAPTION ANIMATIONS - TEMA TWO
   ============================================ */
/* Slider caption iÃ§indeki AOS elementleri iÃ§in baÅŸlangÄ±Ã§ durumu */
.carousel-caption [data-aos] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-caption [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO SLIDER HEIGHT FIX - TEMA TWO
   ============================================ */
#main-slider,
#main-slider .carousel-inner {
    height: 90vh !important;
    min-height: 600px !important;
}

#main-slider .carousel-item {
    height: 90vh !important;
    min-height: 600px !important;
}

#main-slider img,
#main-slider video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

@media (max-width: 768px) {
    #main-slider,
    #main-slider .carousel-inner {
        height: 60vh !important;
        min-height: 360px !important;
    }

    #main-slider .carousel-item {
        height: 60vh !important;
        min-height: 360px !important;
    }

    #main-slider .carousel-caption h1,
    #main-slider .carousel-caption h2 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
    }

    #main-slider .carousel-caption p,
    #main-slider .carousel-caption .lead {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    #main-slider .carousel-caption {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #faqs .col-10.mx-auto {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    background: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
    letter-spacing: -0.01em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }
/* Tablet */
@media (max-width: 991px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.6rem; }
  h4 { font-size: 1.4rem; }
  h5 { font-size: 1.2rem; }
  h6 { font-size: 1.05rem; }
}

/* Mobil */
@media (max-width: 576px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 1rem; }
}

/* ============================================
   MOBILE FIRST - COMPACT TEXT RHYTHM
   ============================================ */
.content-body {
    line-height: 1.7;
}

.content-body p,
.content-body ul,
.content-body ol {
    margin-bottom: 0.85rem;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    margin-top: 1.05rem;
    margin-bottom: 0.55rem;
}

@media (max-width: 991px) {
    body { line-height: 1.62; }
    .content-body { line-height: 1.62; }
    .content-body p,
    .content-body ul,
    .content-body ol { margin-bottom: 0.75rem; }
}

@media (max-width: 576px) {
    body { line-height: 1.55; }
    .content-body { line-height: 1.55; }
    .content-body p,
    .content-body ul,
    .content-body ol { margin-bottom: 0.68rem; }
}

/* ============================================
   READ MORE (MOBILE DEFAULT 3-5 LINES)
   ============================================ */
[data-readmore] {
    position: relative;
}

[data-readmore] [data-readmore-content] {
    overflow: hidden;
    transition: max-height 260ms ease;
    display: flow-root;
}

[data-readmore] [data-readmore-content] > :first-child {
    margin-top: 0 !important;
}

[data-readmore] [data-readmore-content] > :last-child {
    margin-bottom: 0 !important;
}

[data-readmore].is-collapsed [data-readmore-content] {
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
}

[data-readmore].is-expanded [data-readmore-content] {
    mask-image: none;
}

[data-readmore-toggle] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(26, 111, 196, 0.18);
    background: rgba(26, 111, 196, 0.08);
    color: rgba(15, 23, 42, 0.88);
    font-weight: 700;
    font-size: .92rem;
    line-height: 1;
    box-shadow: none;
    cursor: pointer;
}

[data-readmore-toggle]:hover,
[data-readmore-toggle]:focus {
    border-color: rgba(26, 111, 196, 0.28);
    background: rgba(26, 111, 196, 0.12);
}

[data-readmore-toggle]::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(15, 23, 42, 0.45);
    transform: translateY(1px);
}

[data-readmore].is-expanded [data-readmore-toggle]::after {
    border-top: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid rgba(15, 23, 42, 0.45);
    transform: translateY(-1px);
}

@media (min-width: 992px) {
    [data-readmore-toggle] { display: none !important; }
    [data-readmore] [data-readmore-content] { max-height: none !important; }
    [data-readmore].is-collapsed [data-readmore-content] { mask-image: none; }
}

.display-1 {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray);
}

/* ============================================
   NAVBAR - STICKY & PREMIUM
   ============================================ */
.navbar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: .415rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .offcanvas {
        width: min(86vw, 360px);
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
        background: #fff;
        z-index: 2000;
        position: fixed !important;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        height: 100dvh;
        display: flex;
        flex-direction: column;
    }

    .offcanvas-header {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        background: #fff;
    }

    .offcanvas-body {
        padding: 1rem 1.25rem 1.5rem;
        background: #fff;
        overflow-y: auto;
        flex: 1 1 auto;
        min-height: 0;
        display: block;
        position: relative;
    }

    .offcanvas-body > * {
        position: relative;
        z-index: 1;
    }

    .offcanvas-body .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch;
        justify-content: flex-start;
        text-align: left;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 0.25rem;
    }

    .offcanvas-body .navbar-nav .nav-item {
        margin: 0;
    }

    .offcanvas-body .navbar-nav .nav-link {
        padding: 0.9rem 1rem !important;
        border-radius: 1rem;
        background: rgba(26, 111, 196, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-size: 1.05rem;
    }

    .offcanvas-body .navbar-nav .nav-link.active {
        background: rgba(26, 111, 196, 0.12) !important;
        border-color: rgba(26, 111, 196, 0.25);
    }

    .offcanvas-body .dropdown-menu {
        border-radius: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        padding: 0.5rem;
    }

    .offcanvas-body .dropdown-item {
        border-radius: 0.85rem;
        padding: 0.75rem 0.9rem;
    }

    .offcanvas-body .d-flex.align-items-center.gap-3 {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.75rem !important;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .offcanvas-body .d-flex.align-items-center.gap-3 .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
        border-radius: 1rem;
        font-size: 1rem;
    }
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary) !important;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    letter-spacing: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    transition: transform 0.3s ease;
    max-height: 50px;
}

.navbar.scrolled .navbar-brand img {
    max-height: 40px;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

/* Navbar Menu Items */
.navbar-nav {
    align-items: center;
    justify-content: center;
    flex: 1;
}

@media (min-width: 992px) {
    .navbar .offcanvas-body {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .navbar .navbar-nav {
        flex: 1 1 auto;
        min-width: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-link {
        white-space: nowrap;
    }

    .navbar .navbar-actions {
        flex: 0 0 auto;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .navbar .navbar-brand {
        flex: 0 0 auto;
        flex-shrink: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.45rem 0.75rem !important;
    }

    .navbar-actions {
        gap: 0.5rem !important;
    }

    .navbar-actions .btn {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
}

.navbar-nav .nav-item {
    margin: 0 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1.07rem;
    color: var(--dark) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    background: transparent;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

/* Aktif link iÃ§in buton stili */
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: #f1f5f9 !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
}

/* Gradient underline iÃ§in span elementi */
.navbar-nav .nav-link-underline {
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin-top: 0.25rem;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg);
}

.navbar-light .navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.navbar-toggler:hover {
    background: rgba(31, 60, 136, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(31, 60, 136, 0.25);
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1.5rem 0;
        text-align: left;
    }
    
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.875rem 1.5rem !important;
        border-radius: 1rem;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 1.5rem;
    }
    
    .d-flex.align-items-center.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .d-flex.align-items-center.gap-3 .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.03em;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.hero-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-header[style*="url("] {
    padding: 72px 0 52px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-header .lead {
    font-size: 1.375rem;
    color: var(--gray);
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text);
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-content .content-body img {
    /* width: 100%; */
    max-height: 576px;
    object-fit: cover;
    margin: 1.5rem 0;
}

.page-content .content-body .full-width-image-wrapper img {
    max-height: 560px;
    min-height: 0;
    object-fit: cover;
}

.page-content .content-body figure {
    margin: 1.5rem 0;
}

.page-content .content-body figure img {
    margin: 0;
}

.page-content .content-body figcaption {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(0,0,0,.62);
}

.card-page-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.card-page-float {
    float: left;
    width: min(606px, 50%);
    margin: 0 24px 16px 0;
}

.card-page-float::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 991px) {
    .card-page-float {
        float: none;
        width: 100%;
        margin: 0 0 16px 0;
    }
}

@media (min-width: 992px) {
    .page-content .content-body figure {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .page-content .content-body figure img {
        flex: 0 0 68%;
        width: 68%;
    }

    .page-content .content-body figcaption {
        flex: 1;
        padding-top: 6px;
    }
}

.content-body h2,
.content-body h3,
.content-body h4 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

/* ============================================
   SECTION SPACING
   ============================================ */
section {
    padding: 96px 0;
}

section.bg-light {
    background: var(--light) !important;
}

@media (max-width: 991px) {
    section {
        padding: 64px 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 48px 0;
    }
}

/* ============================================
   BLOG CARDS
   ============================================ */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-img-top {
    border-radius: 1rem 1rem 0 0;
    transition: transform 0.3s ease;
    height: 240px;
    object-fit: cover;
}

.card:hover .card-img-top {
    transform: scale(1.04);
}

.card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.3;
}

.card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--primary);
}

.card-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    height: 100%; 
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 3.5rem;
    color: var(--primary);
    transition: transform 0.25s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.05);
}

.feature-card h5 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    border-radius: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #2A4FA0);
    color: white;
    box-shadow: 0 4px 15px rgba(31, 60, 136, 0.3);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2A4FA0, var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 60, 136, 0.3);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 60, 136, 0.25);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-item {
    text-decoration: none;
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gallery-item:hover img {
    transform: scale(1.05); 
} 

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark) !important;
    color: #cbd5e1;
    padding: 5rem 0 2rem; 
}
.footer-text{font-size:.95rem;}

.footer h3,
.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
}

.footer h5 {
    font-size: 1.125rem;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer p {
    line-height: 1.8;
    color: #94a3b8;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
    color: white;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    border-radius: 1rem;
    border: none;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.alert-info {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.1), rgba(201, 162, 39, 0.1));
    color: var(--dark);
}

/* ============================================
   BLOG DETAIL
   ============================================ */
.blog-detail-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.blog-detail-header .container {
    position: relative;
    z-index: 1;
}

.blog-detail-header h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.blog-detail-content figure img {
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================
   GALLERY DETAIL
   ============================================ */
.gallery-detail-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 120px 0 80px;
}

.gallery-detail-header h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
}

.gallery-image-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image-card img {
    transition: transform 0.3s ease;
}

.gallery-image-card:hover img {
    transform: scale(1.05);
}

/* ============================================
   COMMENTS
   ============================================ */
.comment-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary);
}

.comment-avatar {
    position: relative;
}

.comment-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comment-card:hover .comment-avatar::before {
    opacity: 0.3;
}

/* ============================================
   TABS
   ============================================ */
.nav-tabs {
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 1rem 1rem 0 0;
    padding: 1rem 2rem;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.3s ease;
    background: transparent;
}

.nav-tabs .nav-link:hover {
    color: var(--primary);
    background: rgba(31, 60, 136, 0.05);
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background: rgba(31, 60, 136, 0.1);
    border-bottom: 3px solid var(--primary);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    gap: 0.5rem;
}

.page-link {
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.25rem;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), #2A4FA0);
    border-color: var(--primary);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.125rem;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }

    .page-header[style*="url("] {
        padding: 64px 0 44px;
        min-height: 180px;
        max-height: none;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    .display-1 {
        font-size: 3rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    section {
        padding: 64px 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .blog-detail-header h1,
    .gallery-detail-header h1 {
        font-size: 2.25rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.shadow-xl {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
}

.rounded-2xl {
    border-radius: 1rem !important;
}

/* Full Width Image Section */
.full-width-image-wrapper {
    width: calc(100vw - (100vw - 100%));
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: calc(100vw - (100vw - 100%));
    overflow: hidden;
}

@media (max-width: 991px) {
    .full-width-image-wrapper {
        width: 100%;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

.full-width-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

.home-section {
    overflow-x: hidden;
}

.home-section[data-aos] {
    opacity: 0;
}

.home-section[data-aos].aos-animate {
    opacity: 1;
}

.home-section[data-aos] .row.g-4 {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.home-section[data-aos].aos-animate .row.g-4 {
    opacity: 1;
    transform: translateY(0);
}


.service-tags .tag-badge{
  background:#f3f6ff;
  color:#1f2d5a;
  border:1px solid rgba(31,45,90,.12);
  font-weight:600;
  font-size:14px;
  padding:10px 14px;
  transition: all .2s ease;
}

.service-tags .tag-badge:hover{
  background:#1f2d5a;
  color:#fff;
  border-color:#1f2d5a;
  transform: translateY(-2px); 
  box-shadow: 0 10px 25px rgba(31,45,90,.15); 
}

.weather-section{background:linear-gradient(135deg,#1e3c72 0%,#2a5298 50%,#1e3c72 100%);background-size:200% 200%;animation:gradientShift 10s ease infinite;position:relative;overflow:hidden}
.weather-section::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;opacity:.3;animation:snowFloating 20s linear infinite}
@keyframes gradientShift{0%,100%{background-position:0% 50%}50%{background-position:100% 50%}}
@keyframes snowFloating{0%{transform:translateY(0)}100%{transform:translateY(-100px)}}
.weather-title{color:#fff;font-size:2.5rem;text-shadow:2px 2px 4px rgba(0,0,0,.3);margin-bottom:.5rem}
.weather-subtitle{color:rgba(255,255,255,.9);font-size:1.1rem}
.weather-card{background:rgba(255,255,255,.95);border-radius:20px;box-shadow:0 20px 60px rgba(0,0,0,.3);overflow:hidden;backdrop-filter:blur(10px);transition:transform .3s ease,box-shadow .3s ease}
.weather-card:hover{transform:translateY(-5px);box-shadow:0 25px 70px rgba(0,0,0,.4)}
.weather-card-body{padding:2.5rem;display:grid;grid-template-columns:1fr 1.5fr;gap:2.5rem}
.weather-main{display:flex;flex-direction:column;justify-content:center}
.weather-icon-temp{display:flex;align-items:center;gap:1.5rem;margin-bottom:1.5rem}
.weather-icon-large{width:100px;height:100px;filter:drop-shadow(0 4px 8px rgba(0,0,0,.2));animation:iconFloat 3s ease-in-out infinite}
@keyframes iconFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.weather-temp-info{flex:1}
.weather-temp-large{font-size:4.5rem;font-weight:700;color:#2a5298;line-height:1;margin-bottom:.5rem}
.weather-feels-like{color:#666;font-size:.95rem}
.weather-description h3{font-size:1.5rem;font-weight:600;color:#333;margin-bottom:1rem}
.weather-temp-range{display:flex;align-items:center;gap:.75rem;margin-bottom:1.5rem;font-size:.95rem}
.temp-high{color:#e74c3c;font-weight:600}
.temp-low{color:#3498db;font-weight:600}
.temp-separator{color:#999}
.weather-ski-badge{display:inline-flex;align-items:center;background:linear-gradient(135deg,#27ae60 0%,#2ecc71 100%);color:#fff;padding:.75rem 1.5rem;border-radius:50px;font-weight:600;font-size:1rem;box-shadow:0 4px 15px rgba(46,204,113,.3);animation:pulse 2s ease-in-out infinite}
@keyframes pulse{0%,100%{box-shadow:0 4px 15px rgba(46,204,113,.3)}50%{box-shadow:0 4px 25px rgba(46,204,113,.5)}}
.weather-details{display:flex;flex-direction:column;gap:1.5rem}
.weather-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.weather-detail-card{background:linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);border-radius:15px;padding:1.25rem;display:flex;align-items:center;gap:1rem;transition:all .3s ease;border:2px solid transparent}
.weather-detail-card:hover{transform:translateY(-5px);box-shadow:0 10px 25px rgba(0,0,0,.15);border-color:#2a5298}
.weather-detail-card.snow-card{background:linear-gradient(135deg,#e3f2fd 0%,#bbdefb 100%);border-color:#2196f3}
.detail-icon{width:50px;height:50px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;flex-shrink:0}
.humidity-icon{background:linear-gradient(135deg,#3498db 0%,#2980b9 100%);color:#fff}
.wind-icon{background:linear-gradient(135deg,#95a5a6 0%,#7f8c8d 100%);color:#fff}
.pressure-icon{background:linear-gradient(135deg,#9b59b6 0%,#8e44ad 100%);color:#fff}
.visibility-icon{background:linear-gradient(135deg,#f39c12 0%,#e67e22 100%);color:#fff}
.snow-icon{background:linear-gradient(135deg,#3498db 0%,#2980b9 100%);color:#fff;animation:snowRotate 3s linear infinite}
@keyframes snowRotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
.cloud-icon{background:linear-gradient(135deg,#95a5a6 0%,#7f8c8d 100%);color:#fff}
.detail-content{flex:1}
.detail-value{font-size:1.5rem;font-weight:700;color:#2c3e50;line-height:1.2;margin-bottom:.25rem}
.detail-value small{font-size:.9rem;font-weight:500;color:#7f8c8d}
.wind-direction{display:block;font-size:.85rem;color:#7f8c8d;font-weight:500;margin-top:.25rem}
.detail-label{font-size:.85rem;color:#7f8c8d;font-weight:500}
.weather-snow-info{background:linear-gradient(135deg,#e3f2fd 0%,#bbdefb 100%);border-radius:15px;padding:1.25rem;border-left:4px solid #2196f3}
.snow-alert{color:#1976d2;font-size:1.1rem;margin-bottom:.75rem;font-weight:600}
.snow-condition{color:#1565c0;font-size:1rem}
.weather-footer{background:rgba(42,82,152,.05);padding:1.25rem 2.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.weather-updated,.weather-provider{font-size:.85rem;color:#7f8c8d}
.weather-provider a{color:#2a5298;text-decoration:none;font-weight:600;transition:color .3s ease}
.weather-provider a:hover{color:#1e3c72;text-decoration:underline}
@media (max-width:992px){.weather-card-body{grid-template-columns:1fr}.weather-icon-temp{justify-content:center}.weather-main{text-align:center;margin-bottom:2rem}}
@media (max-width:768px){.weather-footer{flex-direction:column;text-align:center}.weather-title{font-size:2rem}.weather-temp-large{font-size:3.5rem}.weather-card-body{padding:1.5rem}.weather-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:576px){.weather-title{font-size:1.75rem}.weather-temp-large{font-size:3rem}.weather-icon-large{width:80px;height:80px}.weather-card-body{padding:1.25rem}.weather-grid{grid-template-columns:1fr;gap:.75rem}.weather-detail-card{padding:1rem}.detail-icon{width:40px;height:40px;font-size:1.25rem}.detail-value{font-size:1.25rem}}
