@charset "utf-8";

/* RESET & BASE */
* {
-webkit-box-sizing: border-box !important;
-moz-box-sizing: border-box !important;
box-sizing: border-box !important;
margin: 0;
padding: 0;
}

body {
margin: 0;
padding: 0;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: #fff;
color: #333;
line-height: 1.6;
}

/* NAVIGATION */
.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav .inner {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 30px;
}

.nav .brand .name {
font-size: 1.1em;
font-weight: 600;
color: #2d2d7d;
}

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

.nav nav a {
text-decoration: none;
color: #555;
font-weight: 500;
font-size: 0.95em;
transition: color 0.3s;
}

.nav nav a:hover {
color: #2d2d7d;
}

.nav nav .btn {
background: #2d2d7d;
color: white;
padding: 8px 20px;
border-radius: 25px;
transition: all 0.3s;
}

.nav nav .btn:hover {
background: #ff4444;
transform: translateY(-2px);
}

.nav .lang {
cursor: pointer;
padding: 5px 10px;
margin-left: 5px;
border-radius: 5px;
transition: background 0.3s;
font-weight: 600;
color: #2d2d7d;
}

.nav .lang:hover {
background: #f0f0f0;
}

/* HERO BRAND SECTION - LOGO, BAŞLIK, QUOTE */
.hero-brand {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
background: linear-gradient(135deg, #1a1a4d 0%, #2d2d6b 50%, #1a1a4d 100%);
padding: 120px 20px 60px;
}

.hero-brand__logo {
margin-bottom: 40px;
animation: fadeInDown 1.2s ease-out;
}

.hero-brand__logo img {
height: 280px;
width: auto;
display: block;
margin: 0 auto;
filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

/* BAŞLIK - LOGONUN HEMEN ALTINDA */
.hero-brand__title {
margin-bottom: 50px;
animation: fadeIn 1.5s ease-out;
}

.hero-brand__title h1 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 2.2em;
font-weight: 300;
color: #ffffff;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
letter-spacing: 1px;
margin: 0;
}

/* QUOTE - DAHA ALTTA, BEYAZ RENK */
.hero-brand__quote {
max-width: 900px;
margin: 0 auto;
animation: fadeIn 2s ease-out;
}

.hero-brand__quote p {
font-size: 1.6em;
color: #ffffff;
font-family: 'Playfair Display', Georgia, serif;
font-weight: 300;
line-height: 1.8;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
font-style: italic;
opacity: 0.95;
}

.hero-brand__quote .quote-author {
display: block;
margin-top: 10px;
font-size: 0.85em;
font-style: normal;
opacity: 0.9;
}

@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

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

/* HERO SECTION */
.hero {
position: relative;
min-height: 50vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070') center/cover;
color: white;
padding: 80px 20px;
}

.hero .overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
}

.hero .content {
position: relative;
z-index: 1;
max-width: 1000px;
margin: 0 auto;
}

.hero h1 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 3.5em;
font-weight: 800;
margin-bottom: 20px;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
font-size: 1.3em;
margin-bottom: 40px;
text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-group {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.btn {
display: inline-block;
padding: 15px 40px;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s;
cursor: pointer;
font-size: 1em;
border: none;
}

.btn.primary {
background: #ff4444;
color: white;
box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
}

.btn.primary:hover {
background: #cc0000;
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(255, 68, 68, 0.6);
}

.btn.ghost {
background: transparent;
color: white;
border: 2px solid white;
}

.btn.ghost:hover {
background: white;
color: #2d2d7d;
}

/* CONTAINER */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 30px;
}

/* SECTIONS */
.section {
padding: 80px 0;
}

.section.alt {
background: #f9f9f9;
}

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

.section h2 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 2.8em;
margin-bottom: 40px;
color: #2d2d7d;
font-weight: 700;
}

.section h3 {
font-size: 1.8em;
margin-bottom: 20px;
color: #2d2d7d;
font-weight: 600;
}

.section h4 {
font-size: 1.3em;
margin-bottom: 12px;
color: #2d2d7d;
font-weight: 600;
}

.section p {
font-size: 1.1em;
line-height: 1.8;
margin-bottom: 20px;
color: #555;
}

.small {
font-size: 0.95em;
color: #666;
}

/* ABOUT SECTION */
.about-grid {
display: grid;
grid-template-columns: 400px 1fr;
gap: 60px;
align-items: center;
margin-bottom: 60px;
}

.about-photo img {
width: 100%;
max-width: 400px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.sec-explanation {
margin-top: 60px;
}

/* TIERS - YATAY DÜZENLİ, KALİTELİ RENKLER */
.tiers-horizontal {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 40px;
}

.tier-box {
padding: 40px 35px;
border-radius: 12px;
transition: all 0.3s;
min-height: 350px;
border: 3px solid transparent;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tier-box:hover {
transform: translateY(-8px);
box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

/* SILVER - GERÇEK GÜMÜŞ RENGİ */
.tier-box.silver {
background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 50%, #A8A8A8 100%);
border-color: #8C8C8C;
}

/* GOLD - KALİTELİ ALTIN SİMLİ */
.tier-box.gold {
background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #C9A961 100%);
border-color: #B8941F;
box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
}

.tier-box.gold:hover {
box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

/* PLATINUM - CİVA RENGİ EFEKTİ */
.tier-box.platinum {
background: linear-gradient(135deg, #E5E4E2 0%, #B8B8B8 50%, #D3D3D3 100%);
border-color: #999999;
box-shadow: 0 5px 25px rgba(184, 184, 184, 0.4);
}

.tier-box.platinum:hover {
box-shadow: 0 15px 50px rgba(184, 184, 184, 0.6);
}

.tier-box h4 {
font-size: 1.9em;
margin-bottom: 25px;
color: #000000;
text-align: center;
font-weight: 700;
}

.tier-box ul {
list-style: none;
padding: 0;
}

.tier-box ul li {
padding: 12px 0;
padding-left: 30px;
position: relative;
line-height: 1.6;
font-size: 0.95em;
color: #000000;
font-weight: 500;
}

.tier-box ul li:before {
content: "✓";
position: absolute;
left: 0;
color: #000000;
font-weight: bold;
font-size: 1.3em;
}

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

.point {
display: flex;
gap: 20px;
align-items: start;
padding: 20px;
background: white;
border-radius: 10px;
transition: all 0.3s;
}

.point:hover {
transform: translateY(-3px);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.point .ico {
font-size: 3em;
flex-shrink: 0;
line-height: 1;
}

.point strong {
display: block;
margin-bottom: 8px;
color: #2d2d7d;
font-size: 1.1em;
}

.point .small {
line-height: 1.6;
}

/* CARDS */
.card {
background: white;
padding: 35px;
border-radius: 12px;
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
transition: all 0.3s;
}

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

.card h3 {
margin-bottom: 20px;
color: #2d2d7d;
}

.card h4 {
margin-bottom: 10px;
color: #2d2d7d;
}

.card a {
color: #2d2d7d;
text-decoration: none;
transition: color 0.3s;
font-weight: 500;
}

.card a:hover {
color: #ff4444;
}

.cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 25px;
margin-top: 40px;
}

.card.hospitality-universities {
margin-top: 30px;
}

.card.hospitality-universities a {
text-decoration: none;
}

/* PROCESS STEPS - YENİ TASARIM */
.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
gap: 40px;
margin-top: 50px;
}

.process-step {
display: flex;
gap: 25px;
padding: 40px;
background: #1a1a4d;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
transition: all 0.3s;
border: 2px solid #2d2d7d;
}

.process-step:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
border-color: #ff4444;
}

.process-step__icon {
font-size: 3.5em;
flex-shrink: 0;
line-height: 1;
}

.process-step__content {
flex: 1;
}

.process-step__content h4 {
margin-bottom: 15px;
color: #ffffff;
font-size: 1.3em;
}

.process-step__content p {
font-size: 1em;
line-height: 1.7;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 15px;
}

.btn-process {
display: inline-block;
margin-top: 15px;
padding: 12px 28px;
background: #ff4444;
color: white;
text-decoration: none;
border-radius: 25px;
font-weight: 600;
font-size: 0.9em;
transition: all 0.3s;
box-shadow: 0 3px 15px rgba(255, 68, 68, 0.3);
}

.btn-process:hover {
background: #cc0000;
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(255, 68, 68, 0.5);
}

/* FOOTER */
.footer {
background: #2d2d7d;
color: white;
padding: 50px 30px;
}

.footer .foot {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer a {
color: white;
text-decoration: none;
transition: color 0.3s;
margin: 0 10px;
}

.footer a:hover {
color: #ffd700;
}

/* LANGUAGE VISIBILITY */
.lang-tr {
display: none;
}

.lang-en {
display: block;
}

html[lang="tr"] .lang-tr {
display: block;
}

html[lang="tr"] .lang-en {
display: none;
}

html[lang="en"] .lang-en {
display: block;
}

html[lang="en"] .lang-tr {
display: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
.about-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.about-photo {
text-align: center;
}

.tiers-horizontal {
grid-template-columns: 1fr;
}

.cards {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

@media (max-width: 768px) {
.nav .inner {
padding: 12px 20px;
}

.nav nav {
display: none;
}

.hero h1 {
font-size: 2.2em;
}

.hero p {
font-size: 1.1em;
}

.hero-brand {
padding: 100px 20px 40px;
}

.hero-brand__logo img {
height: 200px;
}

.hero-brand__title h1 {
font-size: 1.6em;
}

.hero-brand__quote p {
font-size: 1.3em;
}

.section h2 {
font-size: 2em;
}

.process-steps {
grid-template-columns: 1fr;
}

.container {
padding: 0 20px;
}

.section {
padding: 60px 0;
}
}

@media (max-width: 480px) {
.hero-brand__logo img {
height: 150px;
}

.hero-brand__title h1 {
font-size: 1.4em;
}

.hero-brand__quote p {
font-size: 1.1em;
}

.hero h1 {
font-size: 1.8em;
}

.cta-group {
flex-direction: column;
width: 100%;
}

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

.tier-box {
padding: 30px 25px;
min-height: auto;
}

.process-step {
padding: 30px 25px;
}
}
New
/* Comparison Tool Card - Members Only */
.comparison-tool-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    position: relative;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.3);
}

.comparison-tool-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.comparison-tool-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
}

.comparison-tool-card a {
    text-decoration: none;
}

.comparison-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffd700;
    color: #1e3a5f;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.comparison-cta {
    margin-top: 20px;
    text-align: center;
}

.comparison-cta .btn.primary {
    background: #ffd700;
    color: #1e3a5f;
    padding: 12px 30px;
    font-weight: 600;
}

.comparison-cta .btn.primary:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}
/* Comparison Tool Card - Members Only */
.comparison-tool-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    position: relative;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.3);
}

.comparison-tool-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.comparison-tool-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
}

.comparison-tool-card a {
    text-decoration: none;
}

.comparison-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffd700;
    color: #1e3a5f;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.comparison-cta {
    margin-top: 20px;
    text-align: center;
}

.comparison-cta .btn.primary {
    background: #ffd700;
    color: #1e3a5f;
    padding: 12px 30px;
    font-weight: 600;
}

.comparison-cta .btn.primary:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}
/* School Cards - Corporate Purple Style */
#schools .cards .card {
    background: linear-gradient(135deg, #1a1a4d 0%, #2d2d6b 100%);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

#schools .cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 26, 77, 0.4);
}

#schools .cards .card h4,
#schools .cards .card a {
    color: #ffffff;
}

#schools .cards .card .small {
    color: rgba(255, 255, 255, 0.8);
}
/* Elegant Membership Tiers */
.tiers-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tier-box {
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tier-box:hover {
    transform: translateY(-10px);
}

/* Silver Tier */
.tier-box.silver {
    background: linear-gradient(145deg, #c0c0c0 0%, #a8a8a8 25%, #e8e8e8 50%, #9a9a9a 75%, #c0c0c0 100%);
    border: 2px solid #b8b8b8;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.tier-box.silver:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.tier-box.silver h4 {
    background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tier-box.silver,
.tier-box.silver p,
.tier-box.silver li,
.tier-box.silver .small {
    color: #2d2d2d;
}

.tier-box.silver > p.small {
    border-bottom-color: rgba(0, 0, 0, 0.15);
}

.tier-box.silver > p.small:last-of-type {
    border-top-color: rgba(0, 0, 0, 0.15);
}

/* Gold Tier */
.tier-box.gold {
    background: linear-gradient(145deg, #fff9e6 0%, #ffd700 30%, #b8860b 70%, #8b6914 100%);
    border: 2px solid #daa520;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.3);
}

.tier-box.gold:hover {
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.4);
}

.tier-box.gold h4 {
    background: linear-gradient(135deg, #8b6914 0%, #4a3c0a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: none;
}

.tier-box.gold,
.tier-box.gold p,
.tier-box.gold li,
.tier-box.gold .small {
    color: #4a3c0a;
}

/* Platinum Tier */
.tier-box.platinum {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 2px solid #e5e5e5;
    box-shadow: 0 10px 40px rgba(15, 52, 96, 0.4);
}

.tier-box.platinum:hover {
    box-shadow: 0 20px 60px rgba(15, 52, 96, 0.5);
}

.tier-box.platinum h4 {
    background: linear-gradient(135deg, #e5e5e5 0%, #ffffff 50%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tier-box.platinum,
.tier-box.platinum p,
.tier-box.platinum li,
.tier-box.platinum .small {
    color: rgba(255, 255, 255, 0.9);
}

/* Tier Content Styling */
.tier-box ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.tier-box ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tier-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tier-box.silver ul li::before {
    color: #495057;
}

.tier-box.gold ul li::before {
    color: #4a3c0a;
}

.tier-box.platinum ul li::before {
    color: #ffd700;
}

.tier-box .small {
    font-size: 0.85rem;
    opacity: 0.85;
    display: block;
    margin-top: 4px;
}

/* Tier description text */
.tier-box > p.small {
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.tier-box.platinum > p.small {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Bottom tagline */
.tier-box > p.small:last-of-type {
    border-bottom: none;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
    padding-top: 15px;
    padding-bottom: 0;
    margin-top: 20px;
    font-weight: 600;
    font-style: normal;
}

.tier-box.platinum > p.small:last-of-type {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
    .tiers-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tier-box h4 {
        font-size: 1.6rem;
    }
}
/* Why Switzerland Section - Corporate Style */
#why .points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

#why .point {
    background: linear-gradient(135deg, #1a1a4d 0%, #2d2d6b 100%);
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#why .point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 26, 77, 0.4);
}

#why .point .ico {
    font-size: 2.5rem;
    flex-shrink: 0;
}

#why .point strong {
    color: #ffd700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

#why .point .small {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    #why .points {
        grid-template-columns: 1fr;
    }
}
/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: linear-gradient(135deg, #1a1a4d 0%, #2d2d6b 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 26, 77, 0.4);
}

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

.contact-card h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-card a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s;
}

.contact-card a:hover {
    border-bottom-color: #ffd700;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   MOBILE LANGUAGE SELECTOR - ALWAYS VISIBLE
   ============================================ */

/* Mobil cihazlarda dil seçeneklerini her zaman göster */
@media (max-width: 768px) {
    /* Navigation düzeni */
    .nav .inner {
        flex-wrap: wrap;
        position: relative;
    }
    
    /* Ana menüyü gizle ama dil seçeneklerini göster */
    .nav nav {
        display: none;
    }
    
    /* Dil seçenekleri için ayrı container */
    .nav .inner::after {
        content: '';
        display: block;
        width: 100%;
    }
}

/* Dil butonlarını navigation dışına taşı */
.mobile-lang {
    display: none;
}

@media (max-width: 768px) {
    .mobile-lang {
        display: flex;
        position: fixed;
        top: 12px;
        right: 15px;
        z-index: 1001;
        gap: 5px;
    }
    
    .mobile-lang .lang {
        background: rgba(201, 162, 39, 0.9);
        color: #0d1b2a;
        padding: 8px 12px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-lang .lang:hover,
    .mobile-lang .lang.active {
        background: #c9a227;
        transform: scale(1.05);
    }
}
/* ============================================
   TIER BOXES - REFINED
   ============================================ */

.tiers-horizontal {
    gap: 20px;
}

.tier-box {
    padding: 25px 20px;
}

/* Daha belirgin çerçeveler */
.tier-box.silver {
    border: 2px solid #a8a8a8;
}

.tier-box.gold {
    border: 2px solid #d4af37;
}

.tier-box.platinum {
    border: 2px solid #e5e4e2;
}

/* Başlık renkleri */
.tier-box.silver h4 {
    color: #c0c0c0;
}

.tier-box.gold h4 {
    color: #d4af37;
}

.tier-box.platinum h4 {
    color: #e5e4e2;
}

/* Satır araları sıkılaştır */
.tier-box ul {
    margin: 10px 0;
}

.tier-box li {
    padding: 5px 0;
    font-size: 0.88rem;
    line-height: 1.4;
}

.tier-box li .small {
    font-size: 0.78rem;
    margin-top: 2px;
}

.tier-box .small {
    margin-bottom: 10px;
}

/* Son satır (tagline) */
.tier-box > .small:last-child {
    margin-top: 15px;
    padding-top: 10px;
}