:root {
    --primary-navy: #002147;
    --secondary-navy: #003366;
    --navy-light: #004080;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --gold: #c5a059; /* Keeping gold for subtle accents */
    --gold-hover: #b38f4d;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 125px; /* Combined height of top-bar (25px) and navbar (100px) */
    animation: fadeInPage 0.35s ease both;
}

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

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Global Page Header — tüm iç sayfalarda tutarlı üst bölüm yüksekliği */
.page-header {
    background: var(--primary-navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 40px;
    margin-top: 0; /* Changed from 90px to fix white-space due to margin collapse */
    box-sizing: border-box;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.15;
}

.page-header p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.88;
    color: var(--white);
}

.bg-dark-secondary { background-color: var(--secondary-dark); }

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

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

.navy { color: var(--primary-navy); }
.white { color: var(--white); }

.section { padding: 120px 0; }
.section-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary-navy);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-navy);
}

.bg-navy { background-color: var(--primary-navy); color: var(--white); }
.bg-off-white { background-color: var(--off-white); }

.text-center { text-align: center; }
.text-center .section-title::after { left: 50%; transform: translateX(-50%); }

.bg-dark-secondary { background-color: var(--secondary-dark); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

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

.btn-gold:hover {
    background-color: var(--white);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
}

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

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-navy);
    color: var(--white);
    height: 25px;
    line-height: 25px;
    padding: 0;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    transition: top 0.3s ease-in-out;
}

body.scrolled .top-bar {
    top: -25px;
}

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

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

@media (max-width: 768px) {
    .top-bar {
        height: auto;
        line-height: 1.2;
        padding: 4px 0;
    }
    .top-bar .container {
        flex-direction: row; /* Keep on one line if possible */
        justify-content: center;
        gap: 15px;
    }
    .top-bar-info {
        flex-direction: row;
        gap: 10px;
    }
    .desktop-only {
        display: none !important;
    }
}

.desktop-only {
    display: inline-block;
}

.top-bar-social a {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 4px;
    font-size: 0.75rem;
    color: var(--white);
    transition: var(--transition);
}

.social-phone { background: var(--secondary-navy); }
.social-whatsapp { background: #25D366; }
.social-x { background: #000; }
.social-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.top-bar-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 25px; /* Directly below the slim top-bar */
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 20px 0;
    transition: top 0.3s ease-in-out, padding 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: rgba(255, 255, 255, 1);
    /* border-bottom removed */
}

body.scrolled .navbar {
    top: 0;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.1);
}

body.scrolled .navbar {
    top: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Widened to move items more to the left and right */
    padding: 0 20px;   /* Reduced padding for more edge alignment */
}

/* Logo styled via Magnificent Logo Styling section at the end of file */

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px; /* Restored to standard spacing */
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--primary-navy);
    text-decoration: none;
    font-size: 0.95rem; /* Standard readable size */
    font-weight: 600;    /* Classic bold weight */
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px; /* Standard spacing */
}

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

.menu-toggle { display: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
    min-height: 50vh;
    background: linear-gradient(rgba(0, 33, 71, 0.8), rgba(0, 33, 71, 0.8)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--white);
    margin-top: 0; /* Changed from 90px to match consistent header layout */
    padding: 80px 0;
}

.hero-content { width: 100%; }
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title { 
    font-size: 5rem; 
    margin-bottom: 25px; 
    line-height: 1.1; 
    color: var(--white); 
    font-weight: 700; 
}
.hero-description { 
    font-size: 1.4rem; 
    color: rgba(255, 255, 255, 0.9); 
    margin-bottom: 45px; 
    max-width: 900px; 
}
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .hero-description { font-size: 1.15rem; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-description { font-size: 1rem; }
}
.hero-btns { display: flex; gap: 20px; }

/* Alternating Sections */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reverse { direction: rtl; }
.reverse .content-text { direction: ltr; }
.reverse .content-image { direction: ltr; }

.content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 30px 30px 0 var(--primary-navy);
}

.reverse .content-image img {
    box-shadow: -30px 30px 0 var(--gold);
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

/* Grid Layouts */
.articles-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 items per row on desktop */
    gap: 30px;
    margin-top: 50px;
}

.article-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.article-card img { width: 100%; height: 220px; object-fit: cover; }
.article-card-content { padding: 25px; }

.stat-item { text-align: center; }
.stat-item i { display: block; margin-bottom: 10px; font-size: 1.5rem; color: var(--gold); }
.stat-item span { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.article-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 33, 71, 0.05);
    color: var(--primary-navy);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-gold {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.link-gold:hover {
    color: var(--navy-light);
    gap: 12px;
}

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

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid #eee;
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-navy);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 33, 71, 0.1);
}

.service-card i { margin-bottom: 25px; color: var(--primary-navy); }
.service-card h3 { margin-bottom: 15px; font-size: 1.5rem; color: var(--primary-navy); }
.service-card p { color: var(--text-muted); font-size: 1rem; }

/* Contact Section */
.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i { font-size: 1.2rem; margin-right: 20px; margin-top: 5px; color: var(--primary-navy); }
.contact-item h4 { margin-bottom: 5px; color: var(--primary-navy); }

.map-container { margin-top: 30px; border-radius: 8px; overflow: hidden; }

.appointment-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.appointment-form h3 { margin-bottom: 30px; text-align: center; color: var(--primary-dark); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #fdfdfd;
    border: 1px solid #eee;
    color: var(--text-main);
    border-radius: 4px;
    outline: none;
}

.form-group input:focus { border-color: var(--gold); }

.form-note { font-size: 0.75rem; color: var(--gray); margin-top: 15px; text-align: center; }

/* Footer */
.footer { 
    padding: 40px 0 30px; 
    background: var(--primary-navy); 
    color: var(--white); 
    overflow: hidden; 
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
    margin-bottom: 25px;
}
.footer h4 { color: var(--gold); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.footer ul { list-style: none; padding: 0; line-height: 2; }
.footer ul a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer ul a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.footer-bottom p { margin: 0; opacity: 0.6; font-size: 0.9rem; order: 1; }
.footer-social {
    display: flex;
    gap: 15px;
    order: 2;
}
.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}
.footer-social a:hover { transform: translateY(-3px); }
.footer-links a:hover { color: var(--white); }

/* WhatsApp Sticky */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-sticky:hover { transform: scale(1.1); }

/* Info Rows */
.info-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding: 120px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

/* Alternating Layout (Left-Right) */
.info-row:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.info-row:nth-child(even) .info-header {
    order: 2;
}

.info-row:nth-child(even) .info-body {
    order: 1;
}

.info-row:last-child {
    border-bottom: none;
}

.info-header {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centered */
    text-align: center;  /* Centered */
}

.info-header h2 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

/* Magnificent Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
    transition: transform 0.3s ease;
    border: none !important;
}

.logo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #b89e67;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    font-size: 0;         /* hide text nodes like 'ŞH' */
    color: transparent;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/logo.png') center center / cover no-repeat;
    border-radius: 50%;
}

/* Hide old icon elements inside logo-icon */
.logo-icon i,
.logo-icon span {
    display: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Larger Section Logo (Magnificent version) */
.section-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.section-logo .logo-icon {
    width: 140px;
    height: 140px;
    border-width: 5px;
    box-shadow: 0 15px 40px rgba(184, 158, 103, 0.4), 0 0 20px rgba(184, 158, 103, 0.2);
}

/* New FontAwesome Scales Styling - now hidden since we use real logo */
.logo-icon i {
    display: none;
}

/* Shine effect removed as per user request */

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Header Visual (Enlarged and centered) */
.header-visual {
    font-size: 8rem;
    margin-top: 25px;
    line-height: 1;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-visual img {
    width: auto;
    max-width: 350px; /* Max size to keep layout balanced */
    height: auto; /* Show full image, no cropping */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid var(--white);
    display: block; /* Avoid inline spacing */
    margin: 0 auto;
}

/* Hakkımızda Page Specifics */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

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

.principles-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Vision Visual on About Page */
.vision-visual {
    font-size: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.info-row:hover .header-visual {
    transform: scale(1.05);
}

.info-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-body p {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

/* Blueish background for light sections */
.bg-light {
    background-color: #f4f8fb; /* Soft blueish tint */
    border-top: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
}

/* Practice List Grid */
.practice-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.practice-item {
    background: var(--white);
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-navy);
    font-weight: 600;
    color: var(--primary-navy);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-decoration: none;
}

.practice-item:hover {
    transform: translateX(5px);
    background: var(--primary-navy);
    color: var(--white);
}

/* 3 Temel İlke - Flip Card Styling */
.principles-section {
    padding: 40px 0 20px;
    margin-top: -80px;
    position: relative;
    z-index: 100;
}

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

.principle-card {
    background-color: transparent;
    width: 100%;
    height: 280px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.principle-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 12px;
}

.card-front {
    background-color: #001a38;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(0, 33, 71, 0.15);
}

.card-front .tile-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.card-front h3 {
    font-size: 1.6rem;
    margin: 0;
    color: var(--white);
}

.card-back {
    background-color: var(--white);
    color: var(--primary-navy);
    transform: rotateY(180deg);
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 20px 50px rgba(184, 158, 103, 0.15);
}

.card-back p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-main);
}

@media (max-width: 991px) {
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .principles-section {
        margin-top: 40px;
        padding-top: 0;
    }
    .principle-card {
        height: 220px;
    }
}

/* Modern Practice Grid */
.practice-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.practice-card-modern {
    background: var(--white);
    padding: 45px 30px;
    text-align: center;
    border: 1px solid rgba(0, 33, 71, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    border-radius: 4px;
}

.practice-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    transform: translateY(102%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.practice-card-modern:hover::before {
    transform: translateY(0);
}

.practice-card-modern i {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 25px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.practice-card-modern h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    transition: color 0.4s ease;
    font-weight: 700;
}

.practice-card-modern:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.practice-card-modern:hover h3 {
    color: var(--white);
}

/* Quote Section */
.quote-section {
    background: #eef1f6;
    padding: 60px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    color: rgba(0, 33, 71, 0.03);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-style: italic;
    color: var(--primary-navy);
    max-width: 900px;
    margin: 0 auto 35px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Floating Action Buttons Extra */
.fab-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.2);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.fab-call { background-color: var(--primary-navy); }
.fab-contact { background-color: var(--gold); }

.fab-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 33, 71, 0.3);
}

@media (max-width: 991px) {
    .feature-tiles { grid-template-columns: 1fr; margin-top: 0; }
    .practice-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .quote-text { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .practice-grid-modern { grid-template-columns: 1fr; }
    .fab-container { bottom: 20px; left: 20px; }
    .fab-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* Responsive adjustments for info rows */
@media (max-width: 991px) {
    .info-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }
    .practice-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .practice-list-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .articles-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.5rem; }
    .nav-btn { display: none; }
}

@media (max-width: 768px) {
    .articles-grid, .services-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2rem; }
    .container { padding: 0 20px; }
}

/* Article Page Styling */
.article-page {
    background-color: var(--white);
}

body.article-page {
    padding-top: 125px;
}

.article-hero {
    background: linear-gradient(rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.9)), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    color: var(--white);
    text-align: center;
}

.article-hero .article-category {
    background: var(--gold);
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.article-hero .article-title {
    color: var(--white) !important;
    font-size: 3.5rem;
    max-width: 900px;
    margin: 15px auto 0;
    font-weight: 700;
}

.article-container {
    max-width: 1000px; /* Slightly wider */
    margin: 0 auto;
    padding: 80px 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-title {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-top: 15px;
    line-height: 1.2;
}

.article-disclaimer {
    background: #fdf8ef;
    border-left: 4px solid var(--gold);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.article-disclaimer i {
    color: var(--gold);
    font-size: 1.5rem;
}

.article-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
    color: #856404;
    font-style: italic;
}

.article-image {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center; /* Centering the image within the container */
    display: flex;
    justify-content: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.article-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-main);
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-main);
    margin-bottom: 25px;
    text-align: justify; /* Justified text for professional look */
}

.article-content h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin: 45px 0 20px;
    font-weight: 700;
}

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

.article-content ul, .article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 12px;
}

.article-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: center;
}

.article-footer p {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

/* Premium Article Banner (Matching User's Reference) */
.premium-article-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 0; /* Boşluk kalmaması için */
    overflow: hidden;
}

.premium-article-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 2px solid var(--gold);
}

/* Silinen eski özellikler */
.premium-article-banner::before, .pab-content {
    display: none;
}

.pab-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--white);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 20px;
    display: inline-block;
}

.pab-topics span {
    font-size: 1.35rem;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.95);
    display: block;
    font-style: italic;
    opacity: 1;
}

.pab-topics span::after {
    content: '?';
}

.pab-attorney {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-navy);
    margin-top: 20px;
}

@media (max-width: 991px) {
    .premium-article-banner {
        background-position: center bottom;
        padding-top: 0;
        text-align: center;
    }
    .pab-content {
        max-width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.85);
        padding: 30px;
        border-radius: 8px;
    }
    .pab-title { font-size: 2.5rem; }
    .pab-topics span { font-size: 1.1rem; }
}

/* ==========================================================================
   Library & Search System (Emsal Kararlar, TCK Suç Tipleri)
   ========================================================================== */

.emsal-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    padding: 20px 0 60px;
}

.emsal-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.06);
    border: 1px solid rgba(0, 33, 71, 0.05);
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%; /* Ensure full width of grid cell */
    word-break: break-word; /* Prevent content overflow stretching the grid */
}

.emsal-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.12);
}

.emsal-card-img {
    height: 160px;
    background: linear-gradient(135deg, var(--primary-navy), #003366);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    position: relative;
}

.emsal-card-img::after {
    content: 'İÇERİK';
    position: absolute;
    bottom: 12px;
    right: 15px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    opacity: 0.4;
}

.emsal-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.emsal-card h2 {
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
    min-height: 3.22rem; /* Enforce 2 lines height for equal sizing */
}

.emsal-card p {
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.05rem; /* Enforce 3 lines height for equal sizing */
}

.emsal-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(184, 158, 103, 0.1);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search and Filter UI */
.search-filter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 20px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-box input, .search-container input {
    width: 100%;
    padding: 15px 25px 15px 55px;
    border-radius: 50px;
    border: 2px solid rgba(0, 33, 71, 0.1);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    background: var(--white);
    font-family: 'Inter', sans-serif;
}

.search-box input:focus, .search-container input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
}

.search-box i, .search-container .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    z-index: 5;
}

.filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(0, 33, 71, 0.1);
    background: var(--white);
    color: var(--primary-navy);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.no-results {
    display: none;
    text-align: center;
    padding: 80px 0;
    grid-column: 1 / -1;
    width: 100%;
}

.no-results i {
    display: block;
    font-size: 4rem;
    color: rgba(184, 158, 103, 0.3);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 40px 0 80px;
}

.page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(184, 158, 103, 0.3);
    background: var(--white);
    color: var(--primary-navy);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.page-btn:hover {
    background: rgba(184, 158, 103, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
    color: var(--gold);
}

.page-btn.active {
    background: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.page-dots {
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--primary-navy);
    font-weight: 700;
}

/* Responsive for Libraries */
@media (max-width: 1200px) {
    .emsal-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .emsal-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
    .emsal-list { grid-template-columns: 1fr; }
}


/* --- TCK Suç Tipleri Arama ve Filtreleme --- */
.search-container {
    padding: 15px 0;
    background: var(--white);
    border-bottom: 2px solid var(--gold);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.search-row-unified {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 3;
}

.sort-group-unified {
    flex: 1;
    min-width: 220px;
}

.sort-select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--primary-navy);
    font-weight: 600;
    outline: none;
    cursor: pointer;
    background: var(--off-white);
    transition: var(--transition);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    z-index: 5;
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 55px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    background: var(--off-white);
    font-size: 1rem;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1);
}

.results-badge {
    padding: 14px 25px;
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 33, 71, 0.2);
}

.sort-select:focus {
    border-color: var(--gold);
    background: var(--white);
}

@media (max-width: 991px) {
    .search-row-unified {
        flex-direction: column;
        align-items: stretch;
    }
    .sort-group-unified {
        width: 100%;
    }
}

.emsal-list.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px 0;
}

@media (max-width: 1200px) {
    .emsal-list.grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .emsal-list.grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .emsal-list.grid-4 { grid-template-columns: 1fr; }
    .search-main { flex-direction: column; align-items: stretch; }
    .results-badge { text-align: center; }
}

/* Article Back Link */
.back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-navy) !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 40px 0;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.back-to-list:hover {
    color: var(--gold) !important;
    border-bottom-color: var(--gold);
    transform: translateX(-5px);
}

/* --- COMPREHENSIVE MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    body {
        padding-top: 80px; /* Reduced for mobile */
    }

    .navbar {
        top: 30px !important; /* Thinner top-bar */
        padding: 8px 0 !important;
        background: var(--white) !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
        z-index: 9999 !important;
    }

    .top-bar {
        display: block !important;
        height: 30px !important;
        padding: 0 !important;
        line-height: 30px !important;
        font-size: 0.65rem !important;
        z-index: 10000 !important;
    }
    .top-bar .container { 
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
    }
    .top-bar-info { display: flex !important; margin: 0 !important; }
    .top-bar-social { display: flex !important; margin: 0 !important; }

    .menu-toggle { 
        display: block !important; 
        font-size: 1.6rem;
        color: var(--primary-navy);
        z-index: 1005;
        padding: 10px;
    }

    .nav-links {
        position: fixed;
        top: 85px; /* Below the navbar */
        right: -300px; 
        width: 260px;
        height: auto;
        max-height: 80vh;
        background: rgba(0, 33, 71, 0.95) !important;
        backdrop-filter: blur(15px);
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 30px 20px;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 9998 !important;
        gap: 10px;
        opacity: 0;
        visibility: hidden;
        border-radius: 25px 0 0 25px;
        box-shadow: -10px 10px 30px rgba(0,0,0,0.3);
        border: 1px solid rgba(197, 160, 89, 0.2);
        border-right: none;
    }

    .nav-links.active {
        right: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links a {
        color: var(--white) !important;
        font-size: 1.1rem !important;
        font-family: 'Playfair Display', serif;
        text-align: left;
        width: 100%;
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-transform: none;
        letter-spacing: 0.5px;
    }

    .nav-links a:last-child { border-bottom: none; }
    
    .nav-links a:hover {
        background: rgba(197, 160, 89, 0.15);
        padding-left: 20px;
        color: var(--gold) !important;
    }

    .nav-btn {
        display: none !important;
    }

    /* Hero Responsive */
    .hero {
        padding: 60px 15px !important;
        min-height: 50vh !important;
        flex-direction: column;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .hero-title { 
        font-size: 2rem !important; 
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
    }

    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
        line-height: 1.4 !important;
    }

    .hero-btns {
        flex-direction: row;
        width: 100%;
        gap: 10px;
    }

    .hero-btns .btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    
    /* Article & Page Header Scaling */
    .page-header { padding: 50px 15px !important; }
    .page-header h1 { font-size: 1.8rem !important; }
    .article-title { font-size: 1.8rem !important; }
    
    .section { padding: 40px 0 !important; }
    .section-title { font-size: 1.6rem !important; margin-bottom: 30px !important; }

    /* Grid Adjustments */
    .content-grid, .info-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .content-image img, .about-image img, .header-visual img {
        height: auto !important;
        max-width: 100% !important;
        box-shadow: 10px 10px 0 var(--primary-navy) !important;
    }
    
    .reverse .content-image img {
        box-shadow: -10px 10px 0 var(--gold) !important;
    }

    .practice-grid-modern {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .emsal-list {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .articles-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Compact Cards */
    .article-card img { height: 160px !important; }
    .article-card-content { padding: 15px !important; }
    .service-card { padding: 25px 15px !important; }
    .service-card i { margin-bottom: 15px !important; }
    .emsal-card-img { height: 120px !important; }
    .emsal-card-content { padding: 12px !important; }
    .emsal-card h2 { min-height: auto !important; font-size: 1rem !important; }
    .emsal-card p { min-height: auto !important; -webkit-line-clamp: 2 !important; font-size: 0.85rem !important; }

    .article-image { margin-bottom: 25px !important; }
    .article-image img { max-height: 200px; object-fit: cover; }

    /* Hakkımızda Mobile Refinements */
    .about-grid { grid-template-columns: 1fr !important; gap: 30px !important; overflow: hidden; }
    .about-detailed h2 { text-align: center !important; }
    .about-content p { text-align: justify !important; word-wrap: break-word; }
    .about-image-wrapper img { 
        width: 100% !important; 
        max-width: 100% !important; 
        height: auto !important; 
        margin: 0 auto !important; 
        display: block !important;
        box-shadow: 15px 15px 0 var(--primary-navy) !important;
    }
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .value-card p { text-align: center !important; }
    .vision-section .section-title { text-align: center !important; }
    .vision-section .content-text p { text-align: justify !important; word-wrap: break-word; }
    .vision-visual { display: none !important; }
    .principles-grid-8 { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px !important; 
        width: 100% !important;
    }
    .principle-card { height: 180px !important; }
    .card-front h3 { font-size: 0.9rem !important; }
    .card-front { padding: 12px !important; }
    .card-back { padding: 10px !important; }
    .card-back p { font-size: 0.7rem !important; }
    
    /* Footer Height Reduction */
    .footer { padding: 20px 15px !important; }
    .footer-grid { gap: 20px !important; margin-bottom: 15px !important; padding-bottom: 20px !important; }
    .footer h4 { margin-bottom: 10px !important; }
    .footer ul { line-height: 1.8 !important; }
    .footer-bottom { gap: 15px !important; }

    /* İletişim Sayfası Mobile */
    .contact-page-content { padding: 40px 0 !important; }
    .contact-info-card { padding: 25px !important; }
    .contact-info-card h2 { font-size: 1.6rem !important; }
    .contact-info-card .contact-item i { font-size: 1.2rem !important; margin-right: 15px !important; }
    .appointment-form h3 { font-size: 1.5rem !important; margin-top: 30px !important; }
    .full-map { height: 300px !important; margin-top: 40px !important; border-radius: 8px !important; }
    
    /* Global Overflow Fix */
    * { max-width: 100vw; box-sizing: border-box; }
}

/* Article Spacing Improvements */
.article-footer {
    margin-top: 50px;
    margin-bottom: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 33, 71, 0.05);
    text-align: center;
}
.article-footer .btn {
    margin-top: 20px;
}

/* Article Page Layout — push content below fixed navbar */
body.article-page {
    padding-top: 85px; /* desktop: top-bar(25px) + navbar(60px) */
}

/* Article Banner — sits flush, body handles offset */
.premium-article-banner {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.premium-article-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    body.article-page {
        padding-top: 120px; /* mobile: top-bar(30px) + navbar(90px) */
    }
    .premium-article-banner img {
        max-height: 200px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 10px !important; }
    .logo-text { font-size: 1.15rem; font-weight: 700; }
    .logo-icon { 
        width: 48px !important; 
        height: 48px !important; 
        border-width: 2px !important;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    .logo-icon::after {
        background-size: cover !important; /* Revert to full circle as requested */
        background-position: center center !important;
    }
    .hero-title { font-size: 1.7rem !important; }
    p { line-height: 1.5 !important; margin-bottom: 15px !important; }
    .article-content p { font-size: 1rem !important; line-height: 1.6 !important; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.5rem !important; }
    .hero-description { font-size: 0.9rem !important; }
    .section-title { font-size: 1.4rem !important; }
    .nav-links a { font-size: 1.2rem; padding: 15px 0; }
    .logo-text { font-size: 1rem; }

    .footer { text-align: center !important; padding: 30px 15px !important; }
    .footer-grid { 
        grid-template-columns: 1fr !important; 
        gap: 25px !important; 
        text-align: center !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 25px;
        margin-bottom: 20px;
    }
    .footer-about {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-about .logo {
        margin-bottom: 20px !important;
        justify-content: center;
    }
    .footer-about p { margin: 0 auto !important; }
    
    .footer-bottom {
        flex-direction: column !important;
        gap: 20px;
    }
    .footer-bottom p { order: 1 !important; }
    .footer-social { order: 2 !important; }
    .footer-social {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
    .footer-social a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
        font-size: 1.1rem;
        transition: var(--transition);
    }
}
