/*
Theme Name: Murat Koprucu Theme
Theme URI: http://muratkoprucu.com.tr
Author: Antigravity
Author URI: http://muratkoprucu.com.tr
Description: Murat Köprücü için özel tasarlanmış modern, responsive WordPress teması.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: murat-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --color-navy: #002366;
    --color-gold: #D4AF37;
    --color-white: #ffffff;
    --color-light-gray: #f4f4f4;
    --color-dark-gray: #333333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --vh: 1vh;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

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

a:hover {
    color: var(--color-gold);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-navy);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
}

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

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
}

/* Header */
/* Header */
header.site-header {
    background-color: transparent;
    /* Start transparent */
    color: var(--color-navy);
    /* Dark text initially for contrast on light bg? No, hero is light gray, text should be navy. */
    padding: 20px 0;
    position: fixed;
    /* Fix to top */
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.site-header.scrolled {
    background-color: rgba(0, 35, 102, 0.95);
    /* Navy with slight transparency */
    backdrop-filter: blur(10px);
    padding: 15px 0;
    /* Shrink slightly */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Adjust links for transparent vs scrolled state */
header.site-header a,
header.site-header .logo a {
    color: var(--color-navy);
    /* Default on light hero */
    transition: color 0.3s ease;
}

header.site-header.scrolled a,
header.site-header.scrolled .logo a {
    color: #ffffff;
    /* White text on navy background */
}

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

header .logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

header .logo {
    margin: 0;
    line-height: 1;
}

header .logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
    border-bottom: none;
}

header .logo a::after {
    display: none;
}

header .site-description {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    opacity: 1;
    font-style: italic;
}

header.site-header.scrolled .site-description {
    color: rgba(255, 255, 255, 0.9);
}

header .logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-navy);
    margin: 0;
    padding: 0;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

header.site-header.scrolled .logo-subtitle {
    color: rgba(255, 255, 255, 0.8);
}


header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

header nav ul li a {
    color: inherit;
    /* Inherit from header rule above */
    font-weight: 500;
    font-size: 0.95rem;
}

/* Hero Section (Modern Split) */
.hero-section {
    background-color: var(--color-light-gray);
    position: relative;
    overflow: hidden;
    padding: 0;
    height: auto;
    min-height: 85vh;
}

/* Decorative Background Element */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(200, 164, 50, 0.05) 100%);
    border-radius: 50% 0 0 50%;
    z-index: 0;
    transform: skewX(-10deg);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Slight gap for separation */
    min-height: 85vh;
    position: relative;
    /* Above pseudo pattern */
    z-index: 1;
}

/* 1. Left Content */
.hero-content {
    flex: 1;
    padding: 60px;
    z-index: 2;
    /* User requested to remove the visible box */
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;

    /* Keep layout symmetry but invisible container */
    height: 80vh;
    margin: 20px 0 20px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    /* Bolder */
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--color-navy);
    position: relative;
}

/* Accent Lines */
.hero-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-gold);
    margin-bottom: 20px;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--color-dark-gray);
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Modern Primary Button */
.hero-content .btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #a8841a 100%);
    box-shadow: 0 10px 20px rgba(168, 132, 26, 0.3);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(168, 132, 26, 0.4);
}

/* Modern Secondary Button */
.hero-content .btn-secondary {
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-content .btn-secondary:hover {
    background-color: var(--color-navy);
    color: #fff;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
    transform: translateY(-2px);
}

/* 2. Right Image / Slider */
.hero-image {
    flex: 1;
    position: relative;
    height: 80vh;
    /* Reduced slightly for floating effect */
    overflow: hidden;
    /* User Requested Styles: Shadow, Border, Radius */
    margin: 20px 20px 20px 0;
    /* Margin right/top/bottom, left touches text? No, flex gap is 0. Let's make it float fully on right */
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    /* Skew effect or straight? Reverting to straight for now as 'original' */
}

/* Slider Styles */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Keep face focus */
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-container {
        flex-direction: column-reverse;
        /* Image Top, Content Bottom? No, Column-Reverse puts last item (image) on top if html order is Content, Image. Yes. */
        min-height: auto;
    }

    /* Image Section on Mobile */
    .hero-image {
        width: 100%;
        height: 60vh;
        /* Give it decent height */
        margin: 0;
        /* Reset desktop margin */
        border-radius: 0 0 30px 30px;
        /* Rounded bottom corners only */
        border: none;
        border-bottom: 5px solid rgba(255, 255, 255, 0.4);
        box-shadow: none;
    }

    /* Content Section on Mobile */
    .hero-content {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 40px 20px;
        text-align: center;
        border-radius: 20px;
        background: transparent;
        /* Clean look */
        backdrop-filter: none;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }


    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        /* Stack buttons */
        gap: 10px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        /* Full width buttons */
        display: block;
    }
}

/* Vision Section */
.vision-section {
    background-color: var(--color-white);
}

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

.vision-item {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.vision-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vision-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Split Section (Mission & Vision) */
.mission-section,
.vision-statement-section {
    padding: 100px 0;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.split-content .section-title {
    margin-bottom: 30px;
}

.split-content p {
    font-size: 1.15rem;
    color: var(--color-dark-gray);
    line-height: 1.8;
}

/* About Section */
.about-section {
    background-color: var(--color-white);
    padding: 100px 0;
}

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

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--color-navy);
}

.about-text-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text-content .section-title h2::after {
    left: 0;
    transform: none;
}

.about-description .lead {
    font-size: 1.2rem;
    color: var(--color-navy);
    margin-bottom: 20px;
    display: block;
}

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

.highlight h4 {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.highlight p {
    font-size: 0.9rem;
}

/* Timeline Section */
.timeline-section {
    background-color: var(--color-white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--color-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--color-white);
    border: 4px solid var(--color-navy);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(left) {
    left: 0;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-image {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.timeline-content .role {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Experience Section (İş Deneyimi) */
.experience-section {
    background-color: var(--color-light-gray);
    padding: 100px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--color-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--color-gold), var(--color-navy));
    transition: height 0.3s ease;
}

.experience-card:hover::before {
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--color-navy);
}

.experience-card .company {
    font-size: 1.5rem;
    color: var(--color-navy);
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.experience-card .job-title {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: block;
}

.experience-card .period,
.experience-card .location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.experience-card .period i,
.experience-card .location i {
    color: var(--color-gold);
    font-size: 0.9rem;
}

.experience-card .description {
    color: var(--color-dark-gray);
    line-height: 1.7;
    margin-top: 15px;
    font-size: 0.98rem;
}

.experience-card .description p {
    margin: 0;
}

/* Mobile Responsive for Experience */
@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .experience-card {
        padding: 25px;
    }

    .experience-card .company {
        font-size: 1.3rem;
    }
}

/* Press Section (Basında Biz) */
.press-section {
    background-color: var(--color-white);
    padding: 100px 0;
}

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

.press-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.press-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.press-card:hover .press-image img {
    transform: scale(1.1);
}

.press-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.press-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.press-source {
    color: var(--color-gold);
    font-weight: 600;
}

.press-date {
    color: #999;
}

.press-title {
    font-size: 1.3rem;
    color: var(--color-navy);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.press-excerpt {
    color: var(--color-dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-navy);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-link:hover {
    color: var(--color-gold);
}

.press-link i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.press-link:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive for Press */
@media (max-width: 1024px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .press-image {
        height: 180px;
    }
}


/* Projects Section */
.projects-section {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 100px 0;
}

.projects-section .section-title h2 {
    color: var(--color-white);
}

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

.project-card {
    background-size: cover;
    background-position: center;
    height: 300px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 35, 102, 0.9), rgba(0, 35, 102, 0.4));
    transition: background 0.4s ease;
}

.project-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
}

.project-card h3 {
    color: var(--color-gold);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.project-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.highlight-card {
    grid-column: span 2;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    padding-top: 20px;
}

.contact-list {
    list-style: none;
    margin: 30px 0;
}

.contact-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-list .icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light-gray);
    border-radius: 50%;
    color: var(--color-navy);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-list li:hover .icon {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.contact-list div {
    display: flex;
    flex-direction: column;
}

.contact-list strong {
    font-size: 0.9rem;
    color: var(--color-navy);
}

.contact-list a {
    font-weight: 500;
}

.contact-form-container {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.premium-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-navy);
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: var(--color-white);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--color-light-gray);
    padding: 100px 0;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* =========================================
   VISUAL ENHANCEMENTS (Modern FX)
   ========================================= */

/* 1. Ken Burns Effect (Hero Slider) */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.slide.active img {
    animation: kenBurns 6s ease-out forwards;
}

/* 2. Glassmorphism Utilities */
.glass-effect {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Apply Glassmorphism to specific areas */
.hero-content {
    /* Extending existing .hero-content styles */
    background: rgba(255, 255, 255, 0.8) !important;
    /* Fallback */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 3. Scroll Animations (Fade In Up) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items (up to 4 items) */
.vision-item:nth-child(1) {
    transition-delay: 0.1s;
}

.vision-item:nth-child(2) {
    transition-delay: 0.2s;
}

.vision-item:nth-child(3) {
    transition-delay: 0.3s;
}

.timeline-item:nth-child(odd) .reveal-on-scroll {
    transition-delay: 0.1s;
}

.timeline-item:nth-child(even) .reveal-on-scroll {
    transition-delay: 0.1s;
}

/* 4. Floating Action Buttons (FAB) */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9900;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
}

.fab-btn:hover {
    transform: scale(1.1);
    color: white;
}

.fab-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.fab-phone {
    background: linear-gradient(45deg, #002366, #0056b3);
}

/* Gallery Grid Refactor */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.zoom-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

@media screen and (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .lightbox-next {
        right: 10px;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        position: fixed;
    }
}




/* Blog Section (Latest Articles) */
.blog-section {
    background-color: #f9f9f9;
    /* Light background to separate sections */
    padding: 100px 0;
}

.blog-section .section-title h2 {
    color: var(--color-navy);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-navy);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
    min-width: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--color-navy);
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--color-gold);
}

.blog-content .excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    font-weight: 600;
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--color-gold);
}

.btn-primary-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: var(--color-navy);
    color: #fff;
}

/* Single Post Page */
.header-spacer {
    height: 100px;
    /* Push content down below fixed header */
    width: 100%;
}

.single-post-container {
    max-width: 800px;
    /* Improve readability with narrower column */
    margin: 0 auto;
    padding-bottom: 60px;
}

.single-article-content .entry-header {
    margin-bottom: 40px;
}

.single-article-content .entry-title {
    font-size: 2.5rem;
    color: var(--color-navy);
    font-weight: 700;
    margin-top: 15px;
    line-height: 1.2;
}

.single-article-content .post-meta {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.single-article-content .post-meta span {
    margin: 0 5px;
}

.post-thumbnail {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Typography */
.single-article-content .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    /* Explicitly dark grey/black for readability */
}

.single-article-content .entry-content p {
    margin-bottom: 20px;
}

.single-article-content .entry-content h2,
.single-article-content .entry-content h3,
.single-article-content .entry-content h4 {
    color: var(--color-navy);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.single-article-content .entry-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

.single-article-content .entry-content blockquote {
    border-left: 5px solid var(--color-gold);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

/* Post Navigation */
.post-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.nav-previous,
.nav-next {
    max-width: 45%;
}

.nav-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nav-title {
    font-weight: 600;
    color: var(--color-navy);
    font-size: 1rem;
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    display: block;
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title {
    color: var(--color-gold);
}

/* Fix Header on Single Pages overrides transparent default */
/* We need to ensure header background is visible on pages with white bg */
body:not(.home) .site-header {
    background-color: var(--color-navy) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body:not(.home) .site-header a,
body:not(.home) .site-header .logo a {
    color: #fff !important;
}

/* Article Lists & Advanced Typography */
.single-article-content .entry-content {
    color: #111;
    /* Darker black for better readability */
}

.single-article-content .entry-content ul,
.single-article-content .entry-content ol {
    margin: 20px 0 30px 20px;
    padding-left: 20px;
}

.single-article-content .entry-content ul li {
    list-style: none;
    position: relative;
    margin-bottom: 10px;
    padding-left: 5px;
}

.single-article-content .entry-content ul li::before {
    content: "•";
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: -20px;
    top: -2px;
}

.single-article-content .entry-content ol li {
    margin-bottom: 10px;
    padding-left: 5px;
    color: #111;
}

.single-article-content .entry-content ol li::marker {
    color: var(--color-navy);
    font-weight: 700;
    font-style: italic;
}

.single-article-content .entry-content h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 50px;
    color: var(--color-navy);
}

.single-article-content .entry-content strong {
    color: var(--color-navy);
}

/* ================================================
   MOBILE RESPONSIVE COMPREHENSIVE UPDATES (768px ve altı)
   ================================================ */

/* Mobile Menu Hamburger Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: inherit;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Main Navigation on Mobile */
@media screen and (max-width: 768px) {

    /* HEADER & NAVIGATION */
    header.site-header {
        padding: 15px 0;
    }

    header .container {
        flex-wrap: nowrap;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active {
        color: var(--color-gold);
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(0, 35, 102, 0.98);
        backdrop-filter: blur(10px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 950;
    }

    .main-navigation.active {
        max-height: 100vh;
        overflow-y: auto;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .main-navigation li {
        list-style: none;
    }

    .main-navigation a {
        display: block;
        padding: 18px 25px;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .main-navigation a:hover {
        background-color: rgba(212, 175, 55, 0.1);
        color: var(--color-gold);
        padding-left: 35px;
    }

    header.site-header.scrolled {
        padding: 12px 0;
    }

    /* LOGO ADJUSTMENTS */
    header .logo a {
        font-size: 1.2rem;
    }

    /* SECTION SPACING */
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* HERO SECTION - MOBILE */
    .hero-section {
        min-height: auto;
        padding: 0;
    }

    .hero-container {
        flex-direction: column;
        gap: 0;
        min-height: auto;
        padding-top: 70px;
    }

    .hero-section::before {
        display: none;
    }

    .hero-content {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        margin: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero-title::before {
        width: 40px;
        height: 3px;
        margin: 0 auto 15px;
        display: block;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .hero-image {
        width: 100%;
        height: 50vh;
        margin: 0;
        border-radius: 0 0 20px 20px;
    }

    /* SECTION TITLE - MOBILE */
    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.8rem;
        padding-bottom: 10px;
    }

    .section-title h2::after {
        width: 50px;
        height: 2px;
    }

    /* VISION GRID - MOBILE */
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vision-item {
        padding: 25px;
    }

    .vision-item .icon {
        font-size: 2.5rem;
    }

    /* SPLIT SECTIONS - MOBILE */
    .split-container {
        flex-direction: column !important;
        gap: 30px;
    }

    .split-container.reverse {
        flex-direction: column !important;
    }

    .split-content {
        flex: 1;
    }

    /* ABOUT SECTION - MOBILE */
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        box-shadow: none;
        border-radius: 15px;
    }

    .about-text-content .section-title {
        text-align: center;
    }

    .about-text-content .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* TIMELINE - MOBILE */
    .timeline::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 22px;
    }

    .timeline-item:nth-child(even)::after {
        left: 22px;
    }

    /* PROJECTS GRID - MOBILE */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-card {
        grid-column: span 1;
    }

    .project-card {
        height: 250px;
        min-height: 250px;
    }

    .project-card .content {
        padding: 20px;
    }

    .project-card h3 {
        font-size: 1.2rem;
    }

    .project-card p {
        font-size: 0.9rem;
    }

    /* CONTACT SECTION - MOBILE */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding-top: 0;
    }

    .contact-list li {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .contact-list .icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .contact-form-container {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .premium-form input,
    .premium-form select,
    .premium-form textarea {
        padding: 12px;
        font-size: 16px;
    }

    .btn-block {
        width: 100%;
        padding: 14px;
        font-size: 0.95rem;
    }

    /* GALLERY - MOBILE */
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .gallery-overlay,
    .gallery-item:hover .gallery-overlay {
        opacity: 0.8;
        transform: translateY(0);
    }

    .gallery-overlay h3 {
        transform: translateY(0);
    }

    /* BLOG SECTION - MOBILE */
    .blog-section {
        background-attachment: scroll !important;
        padding: 60px 0;
    }

    /* BLOG GRID - MOBILE */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card {
        border-radius: 12px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-date {
        top: 10px;
        right: 10px;
        font-size: 0.85rem;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    /* SINGLE POST - MOBILE */
    .single-post-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .single-article-content .entry-title {
        font-size: 1.5rem;
        margin-top: 20px;
    }

    .post-thumbnail {
        margin-bottom: 25px;
        border-radius: 10px;
    }

    .single-article-content .entry-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .post-navigation {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        padding-top: 20px;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-previous,
    .nav-next {
        max-width: 100%;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    /* BUTTONS - MOBILE */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .btn-primary-outline {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* FAB BUTTONS - MOBILE */
    .fab-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* LIGHTBOX - MOBILE */
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-content img {
        max-height: 85vh;
    }

    /* ARCHIVE PAGE - MOBILE */
    .page-header {
        margin-bottom: 30px;
    }

    .page-header .page-title {
        font-size: 1.5rem;
    }

    /* RESPONSIVE TEXT UTILITIES */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* PAGINATION - MOBILE */
    .pagination {
        margin-top: 40px;
        font-size: 0.9rem;
    }

    .page-numbers {
        padding: 8px 10px;
        margin: 2px;
    }

    /* DECORATIVE ELEMENT - HIDE ON MOBILE */
    .hero-section::before,
    .glass-effect {
        display: none !important;
    }

    /* ENSURE READABILITY */
    body {
        font-size: 15px;
    }

    /* PREVENT HORIZONTAL SCROLL */
    body,
    html {
        overflow-x: hidden;
    }

    /* IMPROVE TOUCH TARGETS */
    a,
    button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    input[type="submit"],
    input[type="button"],
    button {
        min-height: 48px;
        padding: 12px 20px;
    }

    /* FORM OPTIMIZATION */
    form {
        max-width: 100%;
    }

    select,
    input,
    textarea {
        font-size: 16px;
        /* Prevents iOS zoom on focus */
    }

    /* LIST OPTIMIZATIONS */
    li {
        margin-bottom: 8px;
    }

    ul,
    ol {
        margin-left: 20px;
    }

    /* IMAGE RESPONSIVENESS */
    img {
        max-width: 100%;
        height: auto;
    }

    /* TABLE RESPONSIVENESS */
    table {
        font-size: 0.9rem;
        width: 100%;
        overflow-x: auto;
    }

    /* REDUCE ANIMATIONS ON MOBILE */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

    /* MENU ANIMATION */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .main-navigation.active {
        animation: slideDown 0.3s ease;
    }
}

/* ================================================
   TABLET RESPONSIVE (768px - 1024px)
   ================================================ */

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-container {
        gap: 40px;
    }

    .hero-image {
        height: 60vh;
    }

    .gallery-item {
        min-width: 190px;
        height: 190px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
        gap: 15px;
    }
}

/* ================================================
   LANDSCAPE MODE OPTIMIZATION
   ================================================ */
@media screen and (max-height: 600px) {
    section {
        padding: 40px 0;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ================================================
   RETINA DISPLAY OPTIMIZATION (High DPI)
   ================================================ */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .hero-title::before {
        height: 2px;
    }

    .section-title h2::after {
        height: 2px;
    }

    .timeline::after {
        width: 2px;
    }
}

/* ================================================
   ORIENTATION CHANGE OPTIMIZATION
   ================================================ */
@media (orientation: landscape) {
    .hero-container {
        min-height: 100vh;
    }

    .hero-image {
        height: 100vh;
    }

    .hero-content {
        height: 100vh;
        justify-content: center;
    }
}

/* ================================================
   EXTRA SMALL DEVICES (320px - 480px)
   ================================================ */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .vision-item {
        padding: 15px;
    }

    .vision-item .icon {
        font-size: 2rem;
    }

    .blog-section {
        background-attachment: scroll !important;
    }

    .blog-content {
        padding: 15px;
    }

    .about-highlights {
        gap: 15px;
    }

    .contact-list li {
        font-size: 0.95rem;
        gap: 10px;
    }

    .fab-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .fab-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .single-article-content .entry-title {
        font-size: 1.3rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    h4 {
        font-size: 0.95rem;
    }

    p {
        font-size: 0.9rem;
    }
}

/* ========================================
   ABOUT CARDS SECTION - MODERN DESIGN
   ======================================== */
.about-cards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.about-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 35, 102, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.about-cards-section .section-title {
    position: relative;
    z-index: 1;
}

.about-cards-section .section-title h2 {
    color: var(--color-white);
    font-size: 42px;
    margin-bottom: 15px;
}

.about-cards-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: 20px auto 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 35, 102, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-navy));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover::after {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.info-card i {
    font-size: 70px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.info-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

.info-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--color-navy);
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.info-card p {
    color: #555;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.card-arrow {
    font-size: 28px;
    background: linear-gradient(90deg, var(--color-navy), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.info-card:hover .card-arrow {
    transform: translateX(10px);
}

/* Responsive */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .about-cards-section .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-cards-section {
        padding: 80px 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        padding: 40px 25px;
    }

    .info-card i {
        font-size: 60px;
    }

    .info-card h3 {
        font-size: 22px;
    }

    .about-cards-section .section-title h2 {
        font-size: 32px;
    }
}

/* ========================================
   PRESS CARDS - CLICKABLE
   ======================================== */
.press-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.press-card-link:hover .press-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.press-link-text {
    display: inline-block;
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.press-card-link:hover .press-link-text {
    color: var(--color-gold);
}

.press-card-link:hover .press-link-text i {
    transform: translateX(5px);
}

.press-link-text i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* ========================================
   HEADER ALWAYS VISIBLE - DESKTOP & MOBILE
   ======================================== */
/* Header always visible with background */
.site-header {
    background: var(--color-navy) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Header text white for visibility */
.site-branding h1,
.site-branding .site-description,
.site-header a {
    color: white !important;
}

/* ========================================
   MOBILE RESPONSIVE FIXES
   ======================================== */
@media (max-width: 768px) {

    /* Hero section padding to prevent header overlap */
    .hero-content {
        padding-top: 40px !important;
    }

    /* Ensure proper spacing on mobile */
    .hero-section {
        padding-top: 80px !important;
    }

    /* Site branding - prevent overlap */
    .site-branding h1 {
        font-size: 1.5rem;
        margin: 0;
    }

    /* Header always visible with background */
    .site-header {
        background: var(--color-navy) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    /* Header text white for visibility */
    .site-branding h1,
    .site-branding .site-description,
    .site-header a {
        color: white !important;
    }
}