/* ============================================
   IGVideoSave - Instagram Downloader CSS
   igvideosave.online
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --pink:       #e1306c;
    --purple:     #833ab4;
    --orange:     #fd1d1d;
    --gradient:   linear-gradient(135deg, #833ab4 0%, #e1306c 50%, #fd1d1d 100%);
    --dark2:      #1a1a2e;
    --text:       #1a1a2e;
    --text-light: #6b7280;
    --border:     #e5e7eb;
    --shadow:     0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:  0 8px 48px rgba(0,0,0,0.15);
    --radius:     16px;
    --radius-sm:  10px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #f8f9ff; line-height: 1.6; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
img  { max-width: 100%; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ---- HEADER ---- */
.header {
    background: white;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #833ab4, #e1306c, #fd1d1d, #12c2e9) 1;
    position: sticky; top: 0; z-index: 100;
    padding: 14px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: center; /* center the logo */
    position: relative;       /* so lang sits absolute right */
}

/* LOGO */
.logo a { display: flex; align-items: center; gap: 10px; }

.logo-badge {
    background: var(--gradient);
    color: white; font-size: 13px; font-weight: 900;
    padding: 5px 10px; border-radius: 8px;
    letter-spacing: 1px;
}
.logo-text {
    font-size: 24px; font-weight: 800;
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LANGUAGE SELECTOR */
.lang-selector {
    position: absolute;
    right: 0;
}
.lang-btn {
    background: none; border: 2px solid var(--border);
    border-radius: 8px; padding: 7px 14px;
    font-size: 14px; font-weight: 700;
    cursor: pointer; color: var(--text);
    display: flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.lang-btn:hover { border-color: var(--pink); color: var(--pink); }
.lang-btn i     { font-size: 11px; transition: var(--transition); }
.lang-selector.open .lang-btn i { transform: rotate(180deg); }

.lang-dropdown {
    display: none;
    position: absolute; right: 0; top: calc(100% + 8px);
    background: white; border: 1px solid var(--border);
    border-radius: 12px; padding: 8px;
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 200;
}
.lang-selector.open .lang-dropdown { display: block; }

.lang-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px;
    font-size: 14px; font-weight: 500; color: var(--text);
    transition: var(--transition);
}
.lang-item:hover  { background: #f8f9ff; color: var(--pink); }
.lang-item.active { background: #f8f9ff; color: var(--purple); font-weight: 700; }
.lang-flag        { font-size: 18px; }

.lang-coming {
    padding: 8px 14px; font-size: 12px;
    color: var(--text-light); font-style: italic;
    border-top: 1px solid var(--border); margin-top: 4px;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    background: var(--gradient);
    padding: 80px 0 100px;
    overflow: hidden;
    text-align: center;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content  { position: relative; z-index: 1; }
.hero-title    { font-size: clamp(32px, 5vw, 60px); font-weight: 800; color: white; margin-bottom: 16px; line-height: 1.15; }
.hero-subtitle { font-size: clamp(15px, 2vw, 20px); color: rgba(255,255,255,0.88); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* TABS */
.tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.tab {
    padding: 10px 22px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
    color: white; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; gap: 7px;
    text-decoration: none; /* for <a> tabs */
}
.tab:hover, .tab.active { background: white; color: var(--purple); border-color: white; }

/* DOWNLOAD BOX - Stacked like competitor */
.download-box {
    max-width: 680px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}

/* INPUT ROW */
.input-row {
    display: flex; align-items: center; gap: 0;
    background: white; border-radius: 12px;
    padding: 6px 6px 6px 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.8);
}
.input-icon { color: var(--pink); font-size: 20px; flex-shrink: 0; margin-right: 10px; }
.url-input {
    flex: 1; border: none; outline: none;
    font-size: 15px; font-family: 'Inter', sans-serif;
    color: var(--text); background: transparent;
    min-width: 0;
}
.url-input::placeholder { color: #aaa; }

.paste-btn {
    background: #f0f0f0; border: none; cursor: pointer;
    color: #555; padding: 8px 16px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    display: flex; align-items: center; gap: 5px;
    transition: var(--transition); flex-shrink: 0;
    margin-right: 6px;
}
.paste-btn:hover { background: #e0e0e0; color: var(--purple); }

.clear-btn {
    background: none; border: none; cursor: pointer;
    color: var(--text-light); padding: 8px 10px;
    font-size: 13px; font-weight: 500;
    display: none; align-items: center; gap: 4px;
    flex-shrink: 0;
}
.clear-btn.visible { display: flex; }
.clear-btn:hover { color: var(--pink); }

/* DOWNLOAD BUTTON - Full width below input */
.download-btn {
    width: 100%;
    background: #22c55e; color: white; border: none;
    padding: 18px; border-radius: 12px;
    font-size: 17px; font-weight: 800;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    letter-spacing: 1px;
    box-shadow: 0 4px 24px rgba(34,197,94,0.45);
}
.download-btn:hover  { background: #16a34a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(34,197,94,0.5); }
.download-btn:active { transform: translateY(0); background: #15803d; }

/* LOADING */
.loading { margin-top: 30px; color: white; }
.spinner {
    width: 42px; height: 42px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: white; border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ERROR */
.error-msg {
    margin-top: 20px; padding: 14px 24px;
    background: rgba(255,255,255,0.95); border-radius: 12px;
    color: #dc2626; display: flex; align-items: center; gap: 10px;
    max-width: 600px; margin-left: auto; margin-right: auto; font-weight: 500;
}

/* RESULTS */
.results {
    margin-top: 30px; background: white; border-radius: 20px;
    padding: 28px; max-width: 700px; margin-left: auto; margin-right: auto;
    box-shadow: var(--shadow-lg);
}
.results-title { font-size: 20px; font-weight: 700; color: #16a34a; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.results-grid  { display: flex; flex-direction: column; gap: 14px; }
.result-item {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; padding: 16px; border-radius: 14px;
    background: #f8f9ff; border: 1px solid var(--border); flex-wrap: wrap;
}
.result-thumb  { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.result-info   { flex: 1; min-width: 120px; }
.result-type   { font-size: 12px; font-weight: 600; color: var(--pink); text-transform: uppercase; letter-spacing: 0.5px; }
.result-quality { font-size: 14px; font-weight: 700; color: var(--text); margin-top: 2px; }
.result-download-btn {
    display: flex; align-items: center; gap: 8px;
    background: var(--gradient); color: white;
    padding: 11px 22px; border-radius: 50px;
    font-size: 14px; font-weight: 700;
    transition: var(--transition); flex-shrink: 0;
}
.result-download-btn:hover { transform: scale(1.04); box-shadow: 0 4px 16px rgba(225,48,108,0.4); }

/* ---- SECTIONS ---- */
section       { padding: 80px 0; }
.section-title { font-size: clamp(24px, 3.5vw, 42px); font-weight: 800; text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-light); font-size: 17px; margin-bottom: 50px; }

/* HOW TO */
.how-to { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.step-card {
    text-align: center; padding: 36px 28px;
    border-radius: var(--radius); border: 2px solid var(--border);
    position: relative; transition: var(--transition);
}
.step-card:hover { border-color: var(--pink); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-number {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    width: 36px; height: 36px; background: var(--gradient);
    color: white; font-weight: 800; font-size: 16px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.step-icon { font-size: 42px; margin-bottom: 18px; margin-top: 10px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-card p  { color: var(--text-light); line-height: 1.7; }

/* FEATURES */
.features      { background: #f8f9ff; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.feature-card {
    background: white; border-radius: var(--radius); padding: 32px 28px;
    box-shadow: var(--shadow); transition: var(--transition);
    border-top: 4px solid transparent;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--pink); }
.feature-icon  { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; color: white; }
.video-icon    { background: linear-gradient(135deg, #e1306c, #fd1d1d); }
.photo-icon    { background: linear-gradient(135deg, #833ab4, #c13584); }
.reels-icon    { background: linear-gradient(135deg, #405de6, #833ab4); }
.story-icon    { background: linear-gradient(135deg, #f77737, #e1306c); }
.carousel-icon { background: linear-gradient(135deg, #5851db, #405de6); }
.free-icon     { background: linear-gradient(135deg, #12c2e9, #0066ff); }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { color: var(--text-light); line-height: 1.7; }

/* WHY US */
.why-us { background: var(--gradient); }
.why-us .section-title { color: white; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card {
    background: rgba(255,255,255,0.15); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius);
    padding: 32px 24px; text-align: center; color: white; transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.25); transform: translateY(-4px); }
.why-card i  { font-size: 36px; margin-bottom: 16px; display: block; }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 14px; opacity: 0.85; }

/* FAQ */
.faq      { background: white; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
    width: 100%; text-align: left; padding: 20px 24px;
    background: none; border: none; cursor: pointer;
    font-size: 16px; font-weight: 600; color: var(--text);
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    transition: var(--transition);
}
.faq-question:hover { background: #f8f9ff; }
.faq-question i { color: var(--pink); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-light); line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* FOOTER */
.footer { background: var(--dark2); color: rgba(255,255,255,0.7); padding: 60px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { margin-top: 14px; font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-brand .logo-text { color: white; -webkit-text-fill-color: white; }
.footer-links h4 { color: white; font-weight: 700; margin-bottom: 16px; font-size: 15px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a  { font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-nav { display: none; }
    .download-box { flex-direction: column; border-radius: 20px; padding: 16px; }
    .download-btn { width: 100%; justify-content: center; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .hero { padding: 50px 0 70px; }
}
@media (max-width: 480px) {
    .tabs { gap: 6px; }
    .tab  { padding: 8px 14px; font-size: 12px; }
    .result-item { flex-direction: column; align-items: flex-start; }
    .result-download-btn { width: 100%; justify-content: center; }
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 20px; font-size: 14px;
    color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ---- SEO CONTENT SECTION ---- */
.seo-content { background: white; padding: 60px 0; }
.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 40px;
}
.seo-block h2 { font-size: 22px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.seo-block p  { color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }
.seo-list     { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.seo-list li  { display: flex; align-items: center; gap: 10px; color: var(--text-light); font-size: 15px; }
.seo-list i   { color: #22c55e; font-size: 16px; flex-shrink: 0; }

/* ---- OTHER TOOLS SECTION ---- */
.other-tools { background: #f8f9ff; padding: 60px 0; }
.tools-grid  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}
.tool-card {
    background: white; border-radius: var(--radius);
    padding: 28px 24px; text-align: center;
    box-shadow: var(--shadow); transition: var(--transition);
    border-top: 4px solid transparent;
    display: block; color: var(--text);
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: #22c55e; }
.tool-card .tool-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 16px; color: white;
}
.tool-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.tool-card p  { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ============================================
   COMPETITOR-STYLE HOMEPAGE SECTIONS
   ============================================ */

/* ---- ABOUT SECTION ---- */
.about-section { background: white; padding: 70px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px; align-items: center;
}
.about-text h2 { font-size: 28px; font-weight: 800; color: var(--dark2); margin-bottom: 18px; }
.about-text p  { color: var(--text-light); line-height: 1.9; margin-bottom: 14px; font-size: 16px; }
.about-image   { display: flex; justify-content: center; }
.ig-logo-wrap  {
    width: 200px; height: 200px;
    background: var(--gradient);
    border-radius: 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: 100px; color: white;
    box-shadow: 0 20px 60px rgba(131,58,180,0.35);
}

/* ---- HOW TO BOX (purple box) ---- */
.how-to-box { background: #f8f9ff; padding: 60px 0; }
.how-to-inner {
    background: linear-gradient(135deg, #5851db, #833ab4);
    border-radius: 24px; padding: 50px 60px;
    color: white; max-width: 860px; margin: 0 auto;
}
.how-to-inner h2 { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 36px; }
.how-step { margin-bottom: 28px; }
.how-step:last-child { margin-bottom: 0; }
.how-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #FFD700; }
.how-step p  { color: rgba(255,255,255,0.88); line-height: 1.8; font-size: 15px; }

/* ---- FEATURES ALT (alternating layout) ---- */
.features-alt { background: white; padding: 70px 0; }
.feat-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px; align-items: center;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}
.feat-row:last-child { border-bottom: none; }
.feat-row-reverse { grid-template-columns: 1fr 160px; }
.feat-row-reverse .feat-icon-wrap { order: 2; }
.feat-row-reverse .feat-text      { order: 1; }

.feat-icon-wrap {
    width: 130px; height: 130px; border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; color: white; flex-shrink: 0;
}
.video-bg    { background: linear-gradient(135deg, #12c2e9, #0066ff); }
.photo-bg    { background: linear-gradient(135deg, #f7971e, #ffd200); }
.reels-bg    { background: linear-gradient(135deg, #833ab4, #e1306c); }
.carousel-bg { background: linear-gradient(135deg, #5851db, #405de6); }
.story-bg    { background: linear-gradient(135deg, #f77737, #e1306c); }
.igtv-bg     { background: linear-gradient(135deg, #fd1d1d, #833ab4); }

.feat-text h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: var(--dark2); }
.feat-text h3 a { color: var(--dark2); transition: var(--transition); }
.feat-text h3 a:hover { color: var(--pink); }
.feat-text p  { color: var(--text-light); line-height: 1.85; font-size: 15px; }

/* ---- WHY BOX (bordered box like competitor) ---- */
.why-box { background: #f8f9ff; padding: 70px 0; }
.why-inner {
    border: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #833ab4, #e1306c, #12c2e9) border-box;
    border-radius: 24px;
    padding: 50px 60px;
    max-width: 860px; margin: 0 auto;
}
.why-inner h2 { font-size: 30px; font-weight: 800; text-align: center; margin-bottom: 40px; color: var(--dark2); }
.why-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px; align-items: flex-start;
    margin-bottom: 32px;
}
.why-item:last-child { margin-bottom: 0; }
.why-item-right { grid-template-columns: 1fr 70px; }
.why-item-right .why-item-icon { order: 2; }
.why-item-right .why-item-text { order: 1; text-align: right; }
.why-item-icon {
    width: 60px; height: 60px; border-radius: 14px;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: white; flex-shrink: 0;
}
.why-item-text h3 { font-size: 18px; font-weight: 700; color: var(--dark2); margin-bottom: 6px; }
.why-item-text p  { color: var(--text-light); line-height: 1.8; font-size: 14px; }

/* ---- FOOTER (competitor style - centered rows) ---- */
.footer {
    background: white;
    border-top: 1px solid var(--border);
    padding: 50px 0 30px;
    text-align: center;
}
.footer-nav {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 10px 30px;
    margin-bottom: 18px;
}
.footer-nav a {
    font-size: 13px; font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.footer-nav a:hover { color: var(--pink); }
.footer-logo {
    margin: 28px 0 10px;
    display: flex; justify-content: center;
}
.footer-logo a { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-badge { font-size: 13px; padding: 5px 10px; }
.footer-logo .logo-text  { font-size: 22px; }
.footer-copy { font-size: 13px; color: var(--text-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-image { justify-content: center; }
    .feat-row, .feat-row-reverse { grid-template-columns: 1fr; text-align: center; }
    .feat-row-reverse .feat-icon-wrap { order: 1; }
    .feat-row-reverse .feat-text      { order: 2; }
    .feat-icon-wrap { margin: 0 auto; }
    .how-to-inner { padding: 30px 24px; }
    .why-inner    { padding: 30px 24px; }
    .why-item, .why-item-right { grid-template-columns: 1fr; }
    .why-item-right .why-item-icon { order: 1; }
    .why-item-right .why-item-text { order: 2; text-align: left; }
    .why-item-icon { margin: 0 auto; }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms, About)
   ============================================ */
.legal-page { background: #f8f9ff; padding: 60px 0 80px; }
.legal-wrap  { max-width: 820px; margin: 0 auto; }
.legal-wrap h1 { font-size: clamp(28px,4vw,42px); font-weight: 800; color: var(--dark2); margin-bottom: 6px; }
.legal-date  { color: var(--text-light); font-size: 14px; margin-bottom: 40px; }
.legal-block { background: white; border-radius: var(--radius); padding: 30px 36px; margin-bottom: 20px; box-shadow: var(--shadow); }
.legal-block h2 { font-size: 18px; font-weight: 700; color: var(--dark2); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid #f0f0f0; }
.legal-block p  { color: var(--text-light); line-height: 1.85; margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { margin: 10px 0 0 20px; }
.legal-block ul li { color: var(--text-light); line-height: 1.85; margin-bottom: 6px; list-style: disc; }
.legal-block a  { color: var(--pink); text-decoration: underline; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-form   { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.form-group     { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.contact-submit {
    background: var(--gradient); color: white; border: none;
    padding: 16px 32px; border-radius: 12px;
    font-size: 16px; font-weight: 700;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
}
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(225,48,108,0.35); }

.contact-success,
.contact-error {
    padding: 16px 24px; border-radius: 12px;
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px; font-weight: 600;
}
.contact-success { background: #dcfce7; color: #16a34a; }
.contact-error   { background: #fee2e2; color: #dc2626; }

.contact-info { display: flex; flex-direction: column; gap: 14px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-info-item { display: flex; align-items: center; gap: 12px; color: var(--text-light); font-size: 14px; }
.contact-info-item i { color: var(--pink); width: 18px; text-align: center; }