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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-item {
    position: relative;
    padding: 0.4rem 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 0.9rem;
}

.nav-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-item.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 80%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: #ffd700;
    font-size: 1rem;
}

/* Telefon Link Stilleri */
.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    background: transparent;
    border: 1px solid transparent;
}

.phone-link:hover {
    color: #ffd700;
    transform: translateY(-2px) scale(1.02);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.phone-link:hover i {
    color: #ffd700;
    transform: scale(1.2) rotate(15deg);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.phone-link:hover span {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    font-weight: 600;
}

.phone-link:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.phone-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
    border-radius: 20px;
}

/* Telefon ikonu için özel animasyon */
.phone-link i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

/* Hover'da telefon numarası için özel efekt */
.phone-link span {
    transition: all 0.3s ease;
    position: relative;
}

.phone-link:hover span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 1px;
    animation: phoneUnderline 0.6s ease-out;
}

@keyframes phoneUnderline {
    0% {
        width: 0;
        left: 50%;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

/* Mobil cihazlarda hover efektlerini optimize et */
@media (hover: none) {
    .phone-link:hover {
        transform: none;
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }
    
    .phone-link:hover i {
        transform: none;
        text-shadow: none;
    }
    
    .phone-link:hover span {
        text-shadow: none;
        font-weight: normal;
    }
    
    .phone-link:hover span::after {
        display: none;
    }
}

.admin-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.admin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.admin-btn:hover::before {
    left: 100%;
}

.admin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    color: #000;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Main Content */
.main-content {
    padding-top: 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.last-update-hero {
    text-align: center;
    margin-top: 1rem;
}

.update-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 1rem 2rem;
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.update-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.update-badge i {
    color: #ffd700;
    margin-right: 0.5rem;
}

/* Currency Section */
.currency-section {
    margin-bottom: 0;
    padding: 2rem 0;
}

/* Additional Content Section */
.additional-content-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    margin-bottom: 0;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

/* Additional Content Section - sadece içerik varsa göster */
.additional-content-section:empty {
    display: none;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.currency-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.currency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.currency-card:hover::before {
    left: 100%;
}

.currency-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.currency-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.currency-icon.eur {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.currency-icon.usd {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
}

.currency-icon.gbp {
    background: linear-gradient(135deg, #a8e6cf, #7fcdcd);
    box-shadow: 0 8px 20px rgba(168, 230, 207, 0.4);
}

.currency-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.rates-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rate-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rate-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rate-value {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.currency-code {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    line-height: 1.3;
}

/* Footer */
.footer {
    width: 100%;
    max-width: none;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    margin: 0;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
}

.footer-logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.footer-logo-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-item i {
    color: #ffd700;
    width: 16px;
}

.contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.footer-link:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: right;
}

.credit-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.credit-link:hover {
    color: #ffed4e;
    text-decoration: underline;
}

.credit-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.credit-separator {
    color: rgba(255, 215, 0, 0.6);
    margin: 0 0.5rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .currency-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .currency-card {
        padding: 1.2rem;
        min-height: 260px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-item {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .contact-info {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .last-update-hero {
        margin-top: 0.5rem;
    }
    
    .update-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active {
        color: #ffd700;
    }
    
    .main-content {
        padding-top: 80px;
        min-height: calc(100vh - 150px);
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .last-update-hero {
        margin-top: 0.5rem;
    }
    
    .update-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .currency-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .currency-card {
        min-height: auto;
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .rates-container {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .currency-section {
        padding: 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Contact page responsive */
    .contact-info-cards {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .contact-info-card {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .currency-card {
        padding: 1rem;
    }
    
    .rates-container {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .rate-value {
        font-size: 1.2rem;
    }
    
    .currency-card {
        padding: 1rem;
    }
    
    .currency-name {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credits {
        text-align: center;
    }
    
    .contact-content {
        padding: 0 0.15rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr !important;
        gap: 0.6rem;
        display: grid !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        margin: 0;
        width: 100%;
        padding: 0.6rem;
    }
    
    .contact-info-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-info-card p {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
        line-height: 1.3;
    }
    
    .contact-time {
        font-size: 0.65rem;
    }
    
    .contact-info-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-info-card h3 {
        font-size: 1rem;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .contact-form button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-subtitle {
        font-size: 0.85rem;
    }
    
    .about-description {
        padding: 1rem;
    }
    
    .about-description h2 {
        font-size: 1.3rem;
    }
    
    .about-card {
        padding: 0.8rem;
    }
    
    .about-card h3 {
        font-size: 0.9rem;
    }
    
    .about-card p {
        font-size: 0.75rem;
    }
    
    .about-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .about-badge {
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
    }
    
    
    .about-page .content-container {
        padding: 2rem;
    }
    
    .contact-page .content-container {
        padding: 2rem;
    }
    
    .contact-content {
        padding: 0 0.3rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
        padding: 0;
        display: grid !important;
        width: 100%;
        margin: 0;
    }
    
    .contact-info-card {
        padding: 0.8rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        min-height: auto;
    }
    
    .contact-info-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-info-card p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-time {
        font-size: 0.7rem;
    }
    
    .contact-form-card {
        padding: 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-form-card {
        padding: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .map-container {
        padding: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-placeholder {
        padding: 2rem;
    }
    
    .map-content i {
        font-size: 2.5rem;
    }
    
    .map-content h3 {
        font-size: 1.3rem;
    }
    
    .contact-page .content-container {
        padding: 1rem;
    }
}

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

.currency-card {
    animation: fadeInUp 0.6s ease-out;
}

.currency-card:nth-child(1) { animation-delay: 0.1s; }
.currency-card:nth-child(2) { animation-delay: 0.2s; }
.currency-card:nth-child(3) { animation-delay: 0.3s; }

/* About Page Styles */
.about-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 0;
}

.about-header {
    margin-bottom: 2rem;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.about-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.about-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.5;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.about-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.about-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    margin: 0 auto 0.8rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.about-description {
    text-align: left;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-description h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.about-description p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-description p:last-child {
    margin-bottom: 0;
}


.about-page .content-container {
    padding: 2rem;
}

.about-page .about-section {
    padding: 0;
    margin-bottom: 4rem;
}

/* Contact Page Styles */
.contact-section {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0 2rem 0;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.contact-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-info-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    margin: 0 auto 0.8rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.contact-time {
    color: #ffd700;
    font-size: 0.75rem;
    font-weight: 600;
}

.contact-form-section {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .contact-form-section {
        display: block;
        width: 100%;
    }
}

.contact-form-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

@media (max-width: 768px) {
    .contact-form-card {
        width: 100%;
        margin: 0;
        padding: 1.2rem;
        box-sizing: border-box;
        max-width: 100%;
    }
}

.contact-form-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.map-section {
    margin-top: 2rem;
}

.map-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.map-info {
    text-align: center;
    padding: 1rem 0;
}

.map-placeholder {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.map-content i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.map-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.map-link {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    color: #000;
    text-decoration: none;
}


.contact-page .content-container {
    padding: 2rem;
}

.contact-page .contact-section {
    padding: 0;
    margin-bottom: 4rem;
}
