/* ===== VARIABLES ===== */
:root {
    --rose:   #8f2d56;
    --navy:   #04395e;
    --teal:   #136f63;
    --sand:   #dab785;
    --pink:   #eb8a90;
    --sky:    #87ceeb;
    --cream:  #f7f1ee;
    --white:  #ffffff;
    --dark:   #1a1a1a;

    --font-heading: 'Playfair Display', serif;
    --font-body:    'Nunito', sans-serif;

    --max-width:    1160px;
    --radius:       12px;
    --shadow:       0 4px 20px rgba(4,57,94,0.12);
    --shadow-hover: 0 10px 36px rgba(4,57,94,0.2);
    --transition:   0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--cream); color: var(--dark); line-height: 1.65; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ===== NAVIGATION ===== */
nav {
    background: var(--navy);
    padding: 0.85rem 2rem;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img { height: 80px; width: auto; filter: drop-shadow(-2px 0 white) drop-shadow(2px 0 white) drop-shadow(0 -2px white) drop-shadow(0 2px white); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: var(--cream);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--sand); }
.nav-cta {
    background: var(--rose) !important;
    color: var(--cream) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
}
.nav-cta:hover { background: #7a2549 !important; color: var(--cream) !important; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    background-color: var(--navy);
    background-size: cover;
    background-position: 75% 15%;
    color: var(--cream);
    padding: 7rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4,57,94,0.72) 0%,
        rgba(4,57,94,0.55) 40%,
        rgba(143,45,86,0.65) 100%
    );
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; width: 100%; }
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sand);
    font-weight: 700;
    margin-bottom: 1.1rem;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.hero p {
    font-size: 1.1rem;
    opacity: 0.88;
    max-width: 580px;
    margin: 0 auto 2.25rem;
    font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
}
.btn-primary { background: var(--rose); color: var(--cream); }
.btn-primary:hover { background: #7a2549; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(143,45,86,0.4); }
.btn-outline { background: transparent; color: var(--cream); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: #032e4d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(4,57,94,0.35); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ===== SHARED SECTION STYLES ===== */
section { padding: 5.5rem 2rem; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-label {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.section-subtitle { color: #555; font-size: 1.05rem; }

/* ===== PRODUCTS SECTION ===== */
.products-header { text-align: center; margin-bottom: 3rem; }
.products-header .section-subtitle { max-width: 580px; margin: 0 auto; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(218,183,133,0.3);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card.coming-soon { opacity: 0.65; pointer-events: none; }

.card-image {
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,57,94,0.65) 0%, rgba(0,0,0,0.1) 60%);
}
.card-city-big {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--cream);
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
    padding: 0 1.25rem 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    line-height: 1;
}
.card-icon { display: none; }

.card-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: var(--rose);
    color: var(--cream);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.badge-soon { background: var(--sand); color: var(--navy); }

.card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.65rem;
}
.card-desc { color: #555; font-size: 0.93rem; margin-bottom: 1.25rem; flex: 1; }
.card-includes { margin-bottom: 1.5rem; }
.card-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #444;
    padding: 0.28rem 0;
}
.check { color: var(--teal); font-weight: 800; flex-shrink: 0; }
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.1rem;
    border-top: 1px solid #ebe5e0;
}
.card-price {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1;
}
.card-price small { font-family: var(--font-body); font-size: 0.85rem; color: #888; font-weight: 400; }

/* ===== FEATURES SECTION ===== */
.features { background: var(--navy); }
.features .section-label { color: var(--sand); }
.features .section-title { color: var(--cream); }
.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}
.feature {
    text-align: center;
    padding: 1rem;
}
.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}
.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--sand);
    margin-bottom: 0.5rem;
}
.feature p { color: rgba(247,241,238,0.72); font-size: 0.93rem; }

/* ===== ABOUT SECTION ===== */
.about { background: var(--cream); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    aspect-ratio: 4/3;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-text .section-title { margin-bottom: 1rem; }
.about-text p { color: #555; margin-bottom: 1rem; font-size: 0.98rem; }
.about-text p:last-child { margin-bottom: 0; }

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: var(--cream);
    padding: 4rem 1.5rem 3.5rem;
    border-top: 1px solid rgba(4,57,94,0.06);
}
.newsletter-section-inner {
    max-width: 560px;
    margin: 0 auto;
}

/* MailerLite form brand overrides — selectors prefixed with .newsletter-section + form ID
   to exceed the specificity of MailerLite's injected ID-scoped styles */
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper.embedDefault,
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
    width: 100% !important;
    max-width: 100% !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody {
    padding: 0 !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent {
    text-align: center !important;
    margin: 0 0 1.5rem 0 !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4 {
    font-family: 'Playfair Display', serif !important;
    color: var(--navy) !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin: 0 0 0.5rem 0 !important;
    line-height: 1.2 !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p {
    font-family: 'Nunito', sans-serif !important;
    color: var(--navy) !important;
    opacity: 0.72;
    font-size: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
    line-height: 1.55 !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
    font-family: 'Nunito', sans-serif !important;
    border-radius: 999px !important;
    padding: 14px 22px !important;
    font-size: 1rem !important;
    border: 1.5px solid rgba(4,57,94,0.15) !important;
    background-color: #ffffff !important;
    color: var(--navy) !important;
    transition: border-color 0.2s ease !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:focus {
    outline: none !important;
    border-color: var(--rose) !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder {
    color: rgba(4,57,94,0.4) !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
    background-color: var(--rose) !important;
    color: var(--cream) !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    padding: 14px 32px !important;
    font-size: 1rem !important;
    letter-spacing: 0.02em !important;
    border: none !important;
    cursor: pointer !important;
    transition: background-color 0.25s ease, transform 0.25s ease !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
    background-color: #7a2649 !important;
    transform: translateY(-2px) !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
    text-align: center !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
    font-family: 'Playfair Display', serif !important;
    color: var(--teal) !important;
    font-size: 1.75rem !important;
    text-align: center !important;
}
.newsletter-section #mlb2-41268135.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
    font-family: 'Nunito', sans-serif !important;
    color: var(--navy) !important;
    text-align: center !important;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--sand);
    padding: 2rem;
    text-align: center;
}
.trust-strip p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
    font-style: italic;
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    color: var(--cream);
    padding: 3.5rem 2rem 1.5rem;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer-brand img { height: 72px; margin-bottom: 1rem; filter: drop-shadow(-2px 0 white) drop-shadow(2px 0 white) drop-shadow(0 -2px white) drop-shadow(0 2px white); }
.footer-brand p { font-size: 0.88rem; opacity: 0.65; max-width: 280px; line-height: 1.6; }
.footer-col h4 {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sand);
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.88rem; opacity: 0.65; transition: opacity var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--sand); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.45;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ===== FOOTER SOCIAL ===== */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0 2rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--sand);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--rose);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-social svg { width: 30px; height: 30px; }

/* ===== PRODUCT PAGE ===== */
.product-hero {
    background: linear-gradient(140deg, var(--navy) 0%, #073d6e 100%);
    color: var(--cream);
    padding: 5rem 2rem 4rem;
    position: relative;
    background-size: cover;
    background-position: center;
}
.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(4,57,94,0.88) 0%, rgba(4,57,94,0.7) 50%, rgba(143,45,86,0.6) 100%);
}
.product-hero-inner { position: relative; z-index: 1; }
.product-hero.istanbul-hero::before {
    background: linear-gradient(140deg, rgba(13,37,53,0.9) 0%, rgba(26,58,84,0.75) 50%, rgba(19,111,99,0.5) 100%);
}
.product-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.product-hero-text .eyebrow { margin-bottom: 0.75rem; }
.product-hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.product-hero-text p { opacity: 0.85; font-size: 1.05rem; margin-bottom: 2rem; font-weight: 300; }
.product-hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}
.product-hero-card .price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--sand);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.product-hero-card .price-note { opacity: 0.7; font-size: 0.9rem; margin-bottom: 1.5rem; }
.product-hero-card .btn { width: 100%; text-align: center; display: block; }
.product-hero-card .guarantee {
    margin-top: 0.85rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

.product-detail { background: var(--cream); }
.product-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.detail-section { margin-bottom: 3rem; }
.detail-section h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--sand);
}
.detail-section p { color: #555; margin-bottom: 0.85rem; font-size: 0.97rem; }
.detail-list { }
.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #ebe5e0;
    color: #444;
    font-size: 0.95rem;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.sticky-cta {
    position: sticky;
    top: 90px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(218,183,133,0.4);
    text-align: center;
}
.sticky-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.sticky-cta .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--rose);
    font-weight: 700;
    margin-bottom: 1rem;
}
.sticky-cta .btn { width: 100%; display: block; text-align: center; margin-bottom: 0.75rem; }
.sticky-cta .mini-includes { text-align: left; margin-top: 1.25rem; }
.sticky-cta .mini-includes li {
    font-size: 0.82rem;
    color: #555;
    padding: 0.28rem 0;
    display: flex;
    gap: 0.5rem;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}
.success-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3.5rem;
    max-width: 540px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(218,183,133,0.4);
}
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.success-card h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.success-card p { color: #555; margin-bottom: 1rem; }
.success-card .highlight {
    background: rgba(19,111,99,0.08);
    border: 1px solid rgba(19,111,99,0.2);
    border-radius: 8px;
    padding: 1rem;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 1.5rem 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-photo { aspect-ratio: 4/3; }
    .about-photo img { object-position: center 20%; }
    .product-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .sticky-cta { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    nav { padding: 0.75rem 1.25rem; }
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
    .nav-links a:last-child { border-bottom: none; }
    .menu-toggle { display: flex; }
    section { padding: 4rem 1.25rem; }
    .hero { padding: 5rem 1.25rem 4rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .success-card { padding: 2rem 1.5rem; }
}
