@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #262228;
    padding-top: 60px;
}

header {
    background-color: #111220;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: padding 0.3s ease;
}

header.scrolled {
    padding: 10px 50px;
    background-color: rgba(17, 18, 32, 0.95);
    backdrop-filter: blur(5px);
}

.logo img {
    height: 35px;
    transition: height 0.3s ease;
}

header.scrolled .logo img {
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffa800;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-button {
    background-color: transparent;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #ffa800;
    font-size: 11px;
    transition: all 0.3s ease;
}

.header-button:hover {
    background-color: #ffa800;
    color: #111220;
    transform: translateY(-2px);
}

.whatsapp-btn {
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #25D366;
}

.telegram-btn {
    border-color: #0088cc;
}

.telegram-btn:hover {
    background-color: #0088cc;
}

.menu-toggle {
    display: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    height: 150px;
    background-image: url('../titleback.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: -1px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: #ffa800;
}

.breadcrumb {
    font-size: 12px;
}

.breadcrumb a {
    color: #ffa800;
    text-decoration: none;
}

.warning-box {
    background-color: rgba(255, 168, 0, 0.9);
    background-image: url('../warning-background.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    text-align: center;
    padding: 15px;
    margin: 15px auto;
    max-width: 1200px;
    border-radius: 5px;
    font-weight: bold;
    position: relative;
    animation: pulse 2s infinite;
    color: #1c1e2d;
    font-size: 14px;
}

.warning-box i {
    margin-right: 10px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 168, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 168, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 168, 0, 0); }
}

.main-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    padding: 15px;
    flex-wrap: wrap;
}

.payment-form {
    background-color: #f4f5f6;
    padding: 20px;
    border-radius: 5px;
    flex: 1 1 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 300px;
}

.info-box {
    background-color: #f4f5f6;
    background-image: url('../odemeekraniback.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 5px;
    flex: 1 1 300px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 300px;
}

.form-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 900;
    color: #1c1e2d;
}

.form-title i {
    margin-right: 10px;
}

.form-row {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 100%;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #1c1e2d;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ffa800;
    box-shadow: 0 0 8px rgba(255, 168, 0, 0.4);
    outline: none;
}

.form-control:hover {
    border-color: #ccc;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    width: 30%;
}

.phone-group input {
    width: 70%;
}

#card-element {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 40px;
}

.btn-pay {
    background-color: rgba(255, 168, 0, 0.9);
    background-image: url('../warning-background.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: #1c1e2d;
    border: none;
    padding: 15px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.btn-pay:hover {
    color: #000000;
    box-shadow: 0 5px 15px rgba(242, 169, 0, 0.4);
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.btn-back {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #5a6268;
    transform: translateY(-3px);
}

.btn-cancel {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px auto;
    max-width: 1200px;
    display: block;
}

.btn-cancel:hover {
    background-color: #c82333;
    transform: translateY(-3px);
}

.info-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1c1e2d;
}

.info-list {
    list-style: none;
}

.info-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #1c1e2d;
    font-weight: 300;
    font-size: 14px;
}

.info-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #333;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.info-table th, .info-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.info-table th {
    background-color: #f2f2f2;
}

.info-table td {
    word-break: break-all;
}

.info-table a {
    color: #007bff;
    text-decoration: none;
}

.info-table a:hover {
    text-decoration: underline;
}

.newsletter {
    background-image: url('../bulten.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    text-align: center;
    color: #333;
    margin-top: 50px;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 168, 0, 0.9), rgba(230, 149, 0, 0.9));
    z-index: 1;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text {
    text-align: left;
}

.newsletter-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 900;
}

.newsletter-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-input {
    padding: 12px;
    width: 250px;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
}

.btn-subscribe {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

footer {
    background-color: #111;
    background-image: url('../footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 50px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.85);
    z-index: 1;
}

.footer-container, .footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-about {
    max-width: 100%;
}

.footer-about p.slogan {
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0;
    padding: 12px 15px;
    position: relative;
    color: #1c1e2d;
    text-align: center;
    background-color: rgba(255, 168, 0, 0.9);
    background-image: url('../warning-background.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-address p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-address p i {
    margin-right: 10px;
    color: #ffa800;
    width: 16px;
    text-align: center;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffa800;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.footer-title:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffa800;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #333;
    color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: #ffa800;
    color: #333;
}

.footer-newsletter {
    max-width: 300px;
}

.footer-form {
    display: flex;
    margin-bottom: 20px;
}

.footer-input {
    flex: 1;
    padding: 10px;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 4px 0 0 4px;
}

.btn-footer-subscribe {
    background-color: #ffa800;
    color: #333;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.payment-methods {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.payment-icon {
    margin: 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    color: #555;
}

.info-table button:hover {
    background-color: #1EBE52; /* #25D366'nın biraz daha koyu tonu */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.payment-icon:hover {
    opacity: 1;
    color: #333;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffa800;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0.7;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #e69500;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 1;
}

@media (max-width: 767px) {
    body {
        padding-top: 60px;
    }
    header {
        padding: 10px 15px;
    }
    .logo img {
        height: 35px;
    }
    nav ul {
        display: none;
    }
    nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #111220;
        padding: 10px 0;
    }
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    nav ul li a {
        font-size: 14px;
    }
    .header-buttons {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        height: 150px;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .warning-box {
        margin: 15px;
        padding: 10px;
        font-size: 12px;
    }
    .main-content {
        flex-direction: column;
        padding: 10px;
    }
    .payment-form, .info-box {
        flex: 1 1 100%;
        padding: 15px;
        min-width: 100%;
    }
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    .form-label {
        font-size: 12px;
    }
    .form-control {
        padding: 10px;
    }
    .btn-pay, .btn-back {
        padding: 12px;
        font-size: 14px;
    }
    .btn-cancel {
        padding: 12px;
        font-size: 14px;
    }
    .info-title {
        font-size: 16px;
    }
    .info-list li {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .newsletter-container {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    .newsletter-title {
        font-size: 18px;
    }
    .newsletter-input {
        width: 100%;
        padding: 10px;
    }
    .btn-subscribe {
        padding: 10px 15px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    .footer-logo img {
        height: 40px;
    }
    .footer-address p {
        font-size: 12px;
    }
    .footer-title {
        font-size: 16px;
    }
    .footer-links a {
        font-size: 12px;
    }
    .footer-social-icon {
        width: 30px;
        height: 30px;
    }
    .footer-form {
        flex-direction: column;
        gap: 10px;
    }
    .footer-input {
        border-radius: 4px;
    }
    .btn-footer-subscribe {
        border-radius: 4px;
    }
    .footer-bottom {
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    header {
        padding: 15px 30px;
    }
    .logo img {
        height: 40px;
    }
    nav ul li {
        margin: 0 12px;
    }
    nav ul li a {
        font-size: 13px;
    }
    .header-button {
        padding: 10px 15px;
        font-size: 12px;
    }
    .hero {
        height: 200px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .warning-box {
        padding: 15px;
        margin: 20px auto;
        font-size: 14px;
    }
    .main-content {
        gap: 15px;
    }
    .payment-form {
        flex: 2;
        padding: 25px;
    }
    .info-box {
        flex: 1;
        padding: 25px;
    }
    .form-row {
        gap: 15px;
    }
    .form-label {
        font-size: 13px;
    }
    .newsletter-container {
        padding: 30px 0;
    }
    .newsletter-input {
        width: 200px;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-address p {
        font-size: 13px;
    }
    .footer-title {
        font-size: 17px;
    }
    .footer-links a {
        font-size: 13px;
    }
}

@media (min-width: 1025px) {
    body {
        padding-top: 80px;
    }
    header {
        padding: 15px 50px;
    }
    .logo img {
        height: 40px;
    }
    nav ul li {
        margin: 0 15px;
    }
    nav ul li a {
        font-size: 13px;
    }
    .header-button {
        padding: 10px 15px;
        font-size: 12px;
    }
    .hero {
        height: 250px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .warning-box {
        padding: 15px;
        margin: 20px auto;
        font-size: 16px;
    }
    .main-content {
        flex-direction: row;
    }
    .payment-form {
        flex: 2;
        padding: 30px;
    }
    .info-box {
        flex: 1;
        padding: 30px;
    }
    .form-title {
        font-size: 18px;
    }
    .form-row {
        flex-direction: row;
    }
    .form-label {
        font-size: 14px;
    }
    .form-control {
        padding: 12px;
    }
    .btn-pay, .btn-back {
        padding: 15px;
        font-size: 16px;
    }
    .btn-cancel {
        padding: 15px;
        font-size: 16px;
    }
    .info-title {
        font-size: 18px;
    }
    .info-list li {
        font-size: 14px;
    }
    .newsletter-container {
        flex-direction: row;
    }
    .newsletter-title {
        font-size: 24px;
    }
    .newsletter-input {
        width: 250px;
    }
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-address p {
        font-size: 14px;
    }
    .footer-title {
        font-size: 18px;
    }
    .footer-links a {
        font-size: 14px;
    }
}