@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");

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

body {
    background-image: url("../images/page-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

header {
    background-color: #ffb2a5;
    padding: 10px 0;
    position: relative;
    z-index: 999;
}

.logo {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #504243;
    text-decoration: none;
}

.logo img {
    width: 50px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-nav {
    display: flex;
}

.header-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-bottom: 0;
}

.header-nav ul li a {
    color: #504243;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s;
    cursor: pointer;
}

.header-nav ul li a:hover {
    color: #a5483c;
}

.header-nav ul li a:hover {
    color: #a5483c;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #504243;
    border-radius: 3px;
    transition: all 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hero-section {
    background-image: url("../images/hero-section-bg.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    min-height: 900px;
    padding-top: 60px;
}

.hero-section .hero-title {
    font-family: "Dancing Script", cursive;
    text-align: center;
    font-size: 52px;
    font-weight: 400;
    color: #a5483c;
    margin-bottom: 50px;
}

.hero-section .hero-title.hero-title--with-campaign {
    margin-bottom: 16px;
}

.hero-campaign {
    position: relative;
    max-width: 640px;
    margin: 0 auto 28px auto;
    padding: 18px 22px;
    border-radius: 22px;
    background: #f6e9d9;
    border: 2px solid rgba(80, 66, 67, 0.25);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    color: #504243;
    text-align: center;
}

.hero-campaign::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 18px;
    border: 2px solid rgba(80, 66, 67, 0.12);
    pointer-events: none;
}

.hero-campaign__top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
}

.hero-campaign__icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 177, 166, 0.65);
    border: 2px solid rgba(80, 66, 67, 0.18);
    flex: 0 0 auto;
}

.hero-campaign__price {
    margin-top: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    font-size: 30px;
    line-height: 1.1;
}

.hero-campaign__amount {
    font-weight: 800;
    color: #3f3b3c;
}

.hero-campaign__badge {
    font-weight: 500;
    opacity: 0.8;
    font-size: 26px;
}

.hero-campaign__note {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.85;
}

.hero-row.hero-row--after-campaign {
    margin-top: 70px;
}

.hero-item {
    border: 3px solid #3f3b3c;
    border-radius: 8px;
    padding: 10px 50px;
    text-align: center;
    width: fit-content;
    position: relative;
    font-size: 24px;
    color: #000;
    font-weight: 600;
    background-color: #fcefb4;
    text-decoration: none;
}

.hero-item-icon {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 3px solid #3f3b3c;
    background-color: #ffb1a6;
}

.hero-item-icon img {
    width: 40px;
}

.hero-sorular {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.hero-soru-item {
    border: 3px solid #3f3b3c;
    border-radius: 8px;
    padding: 10px 50px;
    text-align: center;
    width: fit-content;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    background-color: #fcefb4;
    color: #000;
}

.hero-soru-item--toggle {
    cursor: pointer;
    appearance: none;
}

.hero-soru-item--toggle:focus-visible {
    outline: 3px solid rgba(165, 72, 60, 0.55);
    outline-offset: 3px;
}

.hero-soru-collapse {
    width: 100%;
    margin-top: 16px;
}

.hero-soru-panel {
    background-color: #fcefb4;
    border: 3px solid #3f3b3c;
    border-radius: 12px;
    padding: 18px 22px;
    max-width: 950px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

.hero-soru-panel ul {
    padding-left: 1.2rem;
}

.hero-soru-panel li + li {
    margin-top: 6px;
}

.hero-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 100px;
}

@media (max-width: 576px) {
    .hero-campaign {
        padding: 14px 16px;
    }

    .hero-campaign__top {
        font-size: 18px;
    }

    .hero-campaign__price {
        font-size: 24px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .hero-campaign__badge {
        font-size: 20px;
    }

    .hero-row.hero-row--after-campaign {
        margin-top: 56px;
    }
}

.hero-sorular {
    width: 100%;
}

.form-content {
    background-color: #fcefb4;
    border-radius: 30px;
    border: 3px solid #393d00;
    padding: 30px;
    margin: 0 auto;
}

.form-content h2 {
    font-size: 26px;
    font-weight: 600;
    color: #393d00;
    margin-bottom: 20px;
}

.form-section {
    margin-top: 10px;
    margin-bottom: 80px;
}

.form-section-row {
    max-width: 1200px;
    margin: 0 auto;
}

/* How It Works Card */
.how-it-works {
    background-color: #f5f0e8;
    border: 2px solid rgba(74, 46, 29, 0.15);
    border-radius: 20px;
    padding: 24px 20px 28px;
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 20px rgba(74, 46, 29, 0.06);
}

.how-it-works__header {
    text-align: center;
    margin-bottom: 22px;
}

.how-it-works__title {
    font-size: 20px;
    font-weight: 800;
    color: #4a2e1d;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.how-it-works__title-underline {
    display: block;
    width: 100%;
    max-width: 140px;
    height: 2px;
    background: linear-gradient(90deg, #c9a86c, #d4a574);
    margin: 0 auto;
    border-radius: 1px;
}

.how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-it-works__step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 0;
}

.how-it-works__step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 36px;
}

.how-it-works__number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(180deg, #d4a574, #c9955c);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(74, 46, 29, 0.2);
    box-shadow: 0 2px 6px rgba(74, 46, 29, 0.12);
}

.how-it-works__step-connector {
    width: 2px;
    min-height: 46px;
    margin: 6px 0 2px;
    border-left: 2px dashed #c9a86c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 2px;
}

.how-it-works__step--last .how-it-works__step-left {
    padding-bottom: 0;
}

.how-it-works__arrow {
    font-size: 12px;
    color: #c9955c;
    line-height: 1;
    margin-top: 30px;
    background-color: #f5f0e8;
    padding-bottom: 10px;
    display: none;
}

.how-it-works__step-body {
    flex: 1;
    min-width: 0;
    padding-left: 14px;
    padding-bottom: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.how-it-works__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f0e0c8, #e8d4b8);
    border: 2px solid rgba(74, 46, 29, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #4a2e1d;
    margin-bottom: 8px;
}

.how-it-works__step-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #4a2e1d;
    margin-bottom: 2px;
    line-height: 1.3;
}

.how-it-works__step-desc {
    font-size: 13px;
    color: #6b5344;
    font-weight: 400;
    line-height: 1.4;
}

.how-it-works__note {
    padding-top: 16px;
    border-top: 2px dashed #c9a86c;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.how-it-works__note-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f0e0c8, #e8d4b8);
    border: 2px solid rgba(74, 46, 29, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #a67c52;
}

.how-it-works__note p {
    font-size: 13px;
    color: #4a2e1d;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    padding-top: 2px;
}

.services-section {
    padding: 80px 0;
    margin-top: 50px;
}

.services-title {
    font-family: "Dancing Script", cursive;
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    color: #a5483c;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: #fcefb4;
    border: 3px solid #3f3b3c;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(63, 59, 60, 0.3);
    background-color: #ffb1a6;
}

.service-card-image {
    width: 100%;
    height: 235px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #3f3b3c;
    margin-bottom: 25px;
    background-color: #ffb1a6;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #504243;
    margin-bottom: 20px;
    font-family: "Dancing Script", cursive;
}

.service-card p {
    font-size: 16px;
    color: #504243;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-button {
    background-color: #ffc545;
    color: #504243;
    border: 2px solid #3f3b3c;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin-top: auto;
}

.service-button:hover {
    background-color: #ffb1a6;
    transform: scale(1.05);
    color: #504243;
}

.faq-section {
    padding: 80px 0;
    margin-top: 50px;
}

.faq-title {
    font-family: "Dancing Script", cursive;
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    color: #a5483c;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fcefb4;
    border: 3px solid #3f3b3c;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(63, 59, 60, 0.2);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: #504243;
    background-color: #fcefb4;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #ffb1a6;
}

.faq-question.active {
    background-color: #ffb1a6;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffc545;
    border: 2px solid #3f3b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon i {
    color: #504243;
    font-size: 14px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease-out,
        padding 0.3s;
    padding: 0 25px;
    background-color: #fcefb4;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #504243;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.submit-button {
    background-color: #ffc545;
    height: 50px;
    border: none;
    padding: 0px 30px;
}

/* Danışmanlık formu — gönder / ödeme alanı */
.form-submit-wrap {
    margin-top: 8px;
    max-width: 100%;
}

.form-submit-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border-radius: 50px;
    padding: 16px 22px 16px 18px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(63, 59, 60, 0.08);
}

.form-submit-info__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f0b429, #d99a2a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-top: 2px;
}

.form-submit-info__text {
    text-align: left;
    flex: 1;
    min-width: 0;
}

.form-submit-info__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #2d2a2a;
    line-height: 1.45;
    margin-bottom: 4px;
}

.form-submit-info__sub {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #4a4545;
    line-height: 1.45;
}

.form-submit-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

.submit-button.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    height: auto;
    padding: 14px 28px;
    background: linear-gradient(180deg, #ffc845 0%, #ffb800 100%);
    color: #2d2a2a;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 2px solid rgba(63, 59, 60, 0.2);
    box-shadow: 0 6px 18px rgba(255, 184, 0, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-button.form-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255, 184, 0, 0.42),
        0 3px 6px rgba(0, 0, 0, 0.1);
    color: #1a1818;
}

.submit-button.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn__icon-left,
.form-submit-btn__icon-right {
    font-size: 16px;
    opacity: 0.95;
}

.form-submit-btn__label {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
}

.form-submit-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0 8px;
    font-size: 13px;
    color: #4a4545;
    font-weight: 500;
    text-align: center;
}

.form-submit-trust__icon {
    color: #198754;
    font-size: 14px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkmark {
    width: 24px;
    height: 24px;
    border: 3px solid #3f3b3c;
    border-radius: 5px;
    background-color: #fcefb4;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s;
    display: flex;
}

.custom-checkbox:hover .checkmark {
    background-color: #ffb1a6;
    border-color: #504243;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #ffc545;
    border-color: #3f3b3c;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid #504243;
    border-width: 0 3px 3px 0;
}

.custom-checkbox .checkbox-label {
    font-size: 16px;
    color: #504243;
    line-height: 1.5;
    font-weight: 500;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-checkbox .checkbox-label a {
    color: #a5483c;
    text-decoration: underline;
    font-weight: 600;
}

.custom-checkbox .checkbox-label a:hover {
    color: #504243;
}

footer {
    background-color: #ffb2a5;
    padding: 50px 0 20px;
    margin-top: 80px;
    border-top: 3px solid #3f3b3c;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: #504243;
}

.footer-logo img {
    width: 50px;
}

.footer-section h4 {
    color: #504243;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #504243;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #a5483c;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fcefb4;
    border: 2px solid #3f3b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #504243;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #ffc545;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #3f3b3c;
    color: #504243;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

.form-section input {
    border-radius: 20px;
    box-shadow: none !important;
    height: 50px;
    border: 2px solid #3f3b3c !important;
    background-color: #ffffff;
    padding: 12px 20px;
    transition: all 0.3s;
}

.form-section input:focus {
    border-color: #ffc545 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 197, 69, 0.25) !important;
    outline: none;
}

.form-section select {
    border-radius: 20px;
    box-shadow: none !important;
    height: 50px;
    border: 2px solid #3f3b3c !important;
    background-color: #ffffff;
    padding: 12px 20px;
    transition: all 0.3s;
}

.form-section select:focus {
    border-color: #ffc545 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 197, 69, 0.25) !important;
    outline: none;
}

.form-control {
    box-shadow: none !important;
    border: 2px solid #3f3b3c !important;
    background-color: #ffffff;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #ffc545 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 197, 69, 0.25) !important;
    outline: none;
    background-color: #ffffff;
}

.form-content textarea {
    padding: 20px !important;
    border: 2px solid #3f3b3c !important;
    background-color: #ffffff;
    border-radius: 20px;
    transition: all 0.3s;
}

.form-content textarea:focus {
    border-color: #ffc545 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 197, 69, 0.25) !important;
    outline: none;
    background-color: #ffffff;
}

/* Modal Styles */
.appointment-modal .modal-content {
    background-color: #fcefb4;
    border: 3px solid #3f3b3c;
    border-radius: 30px;
    padding: 0;
}

.appointment-modal .modal-header {
    border-bottom: 3px solid #3f3b3c;
    padding: 25px 30px;
    background-color: #fcefb4;
    border-radius: 30px 30px 0 0;
}

.appointment-modal .modal-title {
    font-family: "Dancing Script", cursive;
    font-size: 36px;
    font-weight: 400;
    color: #a5483c;
    width: 100%;
    text-align: center;
}

.appointment-modal .btn-close {
    background-color: #ffb1a6;
    border: 2px solid #3f3b3c;
    border-radius: 8px;
    opacity: 1;
    padding: 8px;
}

.appointment-modal .btn-close:hover {
    background-color: #ffc545;
}

.appointment-modal .modal-body {
    padding: 30px;
    background-color: #fcefb4;
}

.appointment-modal .modal-footer {
    border-top: 3px solid #3f3b3c;
    padding: 20px 30px;
    background-color: #fcefb4;
    border-radius: 0 0 30px 30px;
    justify-content: center;
}

.appointment-modal .form-control {
    background-color: #ffffff;
    border: 2px solid #3f3b3c;
    border-radius: 15px;
    padding: 12px 20px;
    font-size: 16px;
    color: #504243;
    height: 50px;
}

.appointment-modal .form-control:focus {
    background-color: #ffffff;
    border-color: #ffc545;
    box-shadow: 0 0 0 0.2rem rgba(255, 197, 69, 0.25);
    color: #504243;
}

.appointment-modal .form-label {
    color: #504243;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.appointment-modal .btn-appointment {
    background-color: #ffc545;
    color: #504243;
    border: 3px solid #3f3b3c;
    border-radius: 25px;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.appointment-modal .btn-appointment:hover {
    background-color: #ffb1a6;
    transform: scale(1.05);
    color: #504243;
}

.service-button {
    cursor: pointer;
    text-decoration: none;
}

.success-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content {
    background-color: #fcefb4;
    border-radius: 30px;
    border: 3px solid #3f3b3c;
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffb1a6;
    border: 3px solid #3f3b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: #504243;
}

.success-title {
    font-family: "Dancing Script", cursive;
    font-size: 48px;
    font-weight: 400;
    color: #a5483c;
    margin-bottom: 30px;
}

.success-message {
    font-size: 18px;
    color: #504243;
    line-height: 1.8;
    margin-bottom: 40px;
}

.success-reminder {
    background-color: #ffb1a6;
    border: 3px solid #3f3b3c;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 40px;
    text-align: left;
}

.success-reminder h3 {
    font-family: "Dancing Script", cursive;
    font-size: 32px;
    font-weight: 400;
    color: #a5483c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-reminder h3 i {
    font-size: 28px;
    color: #504243;
}

.success-reminder p {
    font-size: 16px;
    color: #504243;
    line-height: 1.6;
    margin: 0;
}

.legal-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
}

.legal-content {
    background-color: #fcefb4;
    border-radius: 30px;
    border: 3px solid #3f3b3c;
    padding: 44px 40px;
    max-width: 980px;
    margin: 0 auto;
    color: #504243;
}

.legal-title {
    font-family: "Dancing Script", cursive;
    font-size: 52px;
    font-weight: 400;
    color: #a5483c;
    text-align: center;
    margin-bottom: 26px;
}

.legal-heading {
    font-size: 20px;
    font-weight: 800;
    color: #3f3b3c;
    margin-top: 22px;
    margin-bottom: 10px;
}

.legal-ul,
.legal-ol {
    padding-left: 1.2rem;
    margin-bottom: 12px;
}

.legal-ol li + li,
.legal-ul li + li {
    margin-top: 6px;
}

.legal-acceptance {
    margin-top: 22px;
    background-color: #ffb1a6;
    border: 3px solid #3f3b3c;
    border-radius: 14px;
    padding: 14px 16px;
}

.legal-acceptance strong {
    display: block;
    line-height: 1.7;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header Mobile Styles */
    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #ffb2a5;
        border-left: 3px solid #3f3b3c;
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 80px 20px 20px;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding-left: 0;
    }

    .header-nav ul li {
        width: 100%;
        border-bottom: 2px solid #3f3b3c;
    }

    .header-nav ul li:last-child {
        border-bottom: none;
    }

    .header-nav ul li a {
        display: block;
        padding: 15px 10px;
        font-size: 18px;
        width: 100%;
    }

    .logo {
        font-size: 18px;
    }

    .logo img {
        width: 40px;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: 600px;
        padding-top: 40px;
        background-size: cover;
        background-position: center;
    }

    .hero-section .hero-title {
        font-size: 32px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .hero-item {
        padding: 8px 40px 8px 50px;
        font-size: 18px;
    }

    .hero-item-icon {
        width: 50px;
        height: 50px;
    }

    .hero-item-icon img {
        width: 30px;
    }

    .hero-sorular {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 30px;
        width: 100%;
        padding: 0 15px;
    }

    .hero-soru-item {
        padding: 8px 30px;
        font-size: 18px;
        width: 100%;
        max-width: 100%;
    }

    .hero-row {
        margin-top: 50px;
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 15px;
    }

    /* Form Section Mobile */
    .form-section {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .form-content {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .form-content h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .form-section input,
    .form-section textarea {
        font-size: 16px;
    }

    .form-section .row {
        margin: 0;
    }

    .form-section .col-md-6,
    .form-section .col-md-12 {
        padding: 0 0 15px 0;
    }

    .submit-button {
        width: 100%;
        font-size: 16px;
        margin-top: 10px;
    }

    .submit-button.form-submit-btn {
        padding: 14px 18px;
        font-size: 12px;
        gap: 8px;
    }

    .form-submit-info {
        border-radius: 28px;
        padding: 14px 16px;
        gap: 12px;
    }

    .form-submit-info__icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .form-submit-info__title {
        font-size: 14px;
    }

    .form-submit-info__sub {
        font-size: 13px;
    }

    .form-submit-trust {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .custom-checkbox {
        margin-bottom: 15px;
    }

    .custom-checkbox .checkbox-label {
        font-size: 14px;
    }

    /* How It Works Mobile */
    .how-it-works {
        margin-bottom: 24px;
        padding: 20px 16px 24px;
        position: static;
    }

    .how-it-works__title {
        font-size: 18px;
    }

    .how-it-works__title-underline {
        max-width: 100px;
    }

    .how-it-works__step-left {
        width: 32px;
    }

    .how-it-works__number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .how-it-works__step-body {
        padding-left: 12px;
    }

    .how-it-works__icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .how-it-works__step-title {
        font-size: 14px;
    }

    .how-it-works__step-desc {
        font-size: 12px;
    }

    .how-it-works__note-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .how-it-works__note p {
        font-size: 12px;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 50px 0;
        margin-top: 30px;
    }

    .services-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .service-card-image {
        height: 225px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .service-card p {
        font-size: 15px;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: 50px 0;
        margin-top: 30px;
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer.active {
        padding: 15px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section {
        width: 100%;
    }

    /* Success Section Mobile */
    .success-section {
        padding: 50px 0;
        min-height: 50vh;
    }

    .success-content {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
        margin-bottom: 25px;
    }

    .success-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .success-message {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .success-reminder {
        padding: 20px;
        margin-top: 30px;
    }

    .success-reminder h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .success-reminder h3 i {
        font-size: 22px;
    }

    .success-reminder p {
        font-size: 15px;
    }

    /* Legal Section Mobile */
    .legal-section {
        padding: 50px 0;
        min-height: 50vh;
    }

    .legal-content {
        padding: 28px 20px;
        margin: 0 15px;
    }

    .legal-title {
        font-size: 40px;
    }

    /* Modal Mobile */
    .appointment-modal .modal-dialog {
        margin: 15px;
    }

    .appointment-modal .modal-title {
        font-size: 28px;
    }

    .appointment-modal .modal-body {
        padding: 20px;
    }

    .appointment-modal .modal-header {
        padding: 20px;
    }

    .appointment-modal .modal-footer {
        padding: 15px 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-section .hero-title {
        font-size: 28px;
    }

    .hero-item {
        font-size: 16px;
        padding: 6px 35px 6px 45px;
    }

    .hero-soru-item {
        font-size: 16px;
        padding: 6px 20px;
    }

    .form-content h2 {
        font-size: 20px;
    }

    .services-title,
    .faq-title {
        font-size: 32px;
    }

    .success-title {
        font-size: 32px;
    }

    .logo {
        font-size: 16px;
    }

    .logo img {
        width: 35px;
    }

    .header-nav {
        width: 85%;
    }
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #3f3b3c;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #ffb1a6;
    color: #504243;
    border-color: #a5483c;
}

.alert-danger ul {
    margin: 0;
    padding-left: 20px;
}

.alert-success {
    background-color: #fcefb4;
    color: #504243;
    border-color: #393d00;
}

.is-invalid {
    border-color: #a5483c !important;
}

.invalid-feedback {
    display: block;
    color: #a5483c;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}
