/* GlobalFix Premium Design System */
:root {
    --primary: #CC0000; /* Vibrant Red */
    --secondary: #FFCC00; /* DHL Style Yellow */
    --accent: #F4F4F4;
    --text: #1A1A1A;
    --text-light: #444444;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.9);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    font-weight: 700;
}

/* Navbar Refined to Image Style */
nav {
    position: fixed;
    top: 20px;
    left: 5%;
    right: 5%;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-radius: 100px; /* Pill shape from image */
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    background: #f8f9fa;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.support-line {
    text-align: right;
    font-size: 0.75rem;
    font-weight: 700;
}

.support-line span {
    display: block;
    color: #AAA;
}

.hemen-ara-btn {
    background: #1a1a2e; /* Dark button from image */
    color: var(--white);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

/* Hero Section Refined with Animated Background */
.hero {
    height: 100vh;
    background: linear-gradient(-45deg, #ffffff, #fff0f0, #fff9e6, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(204,0,0,0.07) 0%, transparent 50%),
                radial-gradient(circle, rgba(255,204,0,0.07) 0%, transparent 50%);
    animation: moveShapes 25s linear infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes moveShapes {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content h1 {
    font-size: 5rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-content h1 span.country {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-action-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-pill {
    padding: 1.2rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.btn-whatsapp { background: #fff; color: #333; border: 1px solid #eee; }
.btn-main { background: #1DB954; color: #fff; font-size: 1.3rem; padding: 1.5rem 3rem; } /* Green like image */
.btn-randevu { background: #fff; color: #333; border: 1px solid #eee; }

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f7ff;
    color: #0066cc;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Services */
.section {
    padding: 100px 5%;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title .divider {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition);
    text-align: left;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    background: rgba(204, 0, 0, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Payporter Partners */
.partners {
    background: var(--secondary);
    color: var(--primary);
    padding: 60px 0;
}

.partner-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-item {
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* WhatsApp Floating */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    z-index: 1001;
    transition: var(--transition);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Referanslar & Logos */
.partner-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.logo-item {
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.6;
}

.logo-item img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

/* Country Grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.country-card {
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    border: 1px solid #eee;
    transition: var(--transition);
}

.country-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.country-card img {
    width: 30px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive Refresh */
@media (max-width: 992px) {
    .nav-links, .nav-right .support-line { display: none; }
    .hero-content h1 { font-size: 3.5rem; }
    nav { top: 10px; padding: 0.6rem 1.2rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-action-btns { flex-direction: column; width: 100%; }
    .btn-pill { width: 100%; justify-content: center; }
    .contact-container { grid-template-columns: 1fr; }
    .partner-logos-grid { gap: 30px; }
    .logo-item { font-size: 1.2rem; }
}

