/* ============================================
   VISAS DANIELA SAENZ
   Premium Immigration Consultancy
   ============================================ */

:root {
    --dark: #0c111b;
    --dark-2: #141c2e;
    --dark-3: #1a2540;
    --navy: #1e3a6e;
    --blue: #2563eb;
    --red: #c0392b;
    --gold: #c9a227;
    --gold-light: #e2c044;
    --white: #ffffff;
    --off-white: #f7f6f3;
    --gray-100: #f1f0ed;
    --gray-200: #e2e0dc;
    --gray-300: #c8c5bf;
    --gray-400: #9c9890;
    --gray-500: #706c65;
    --gray-600: #4a4740;
    --gray-700: #2d2b27;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--gray-700); line-height: 1.6; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(12, 17, 27, 0.96);
    backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-name {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.5px;
}
.brand-name strong { font-weight: 600; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    transition: color 0.3s;
    letter-spacing: 0.2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
}
.nav-links .nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201,162,39,0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 101;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 4px;
    transition: all 0.3s;
}
.nav-toggle.active span:first-child { transform: rotate(45deg) translate(3px, 4px); }
.nav-toggle.active span:last-child { transform: rotate(-45deg) translate(3px, -4px); }

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-img-wrap {
    position: absolute;
    inset: 0;
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(12,17,27,0.92) 0%,
        rgba(12,17,27,0.75) 40%,
        rgba(12,17,27,0.3) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,162,39,0.12);
    border: 1px solid rgba(201,162,39,0.3);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 500;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero h1 .accent {
    color: var(--gold-light);
    font-style: italic;
}
.hero-content > p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}
.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}
.btn-wa.small {
    padding: 12px 22px;
    font-size: 14px;
}
.btn-wa i { font-size: 18px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all 0.3s var(--ease);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.proof-item {
    display: flex;
    flex-direction: column;
}
.proof-item strong {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
}
.proof-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    letter-spacing: 0.3px;
}
.proof-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

/* === SERVICES BENTO === */
.services {
    padding: 120px 0;
    background: var(--off-white);
}
.services-intro {
    margin-bottom: 56px;
    max-width: 600px;
}
.tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 16px;
}
.tag.light { color: var(--gold-light); }

.services-intro h2,
.section-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.25;
}
.services-intro h2 em,
.section-head h2 em {
    font-style: italic;
    color: var(--red);
}
.section-head.light h2 { color: var(--white); }
.section-head.light h2 em { color: var(--gold-light); }
.section-head {
    margin-bottom: 56px;
}

.services-bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
}
.bento-main { display: flex; }
.bento-main .bento-card { flex: 1; }
.bento-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bento-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 0;
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.bento-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.bento-card.dark {
    background: var(--dark);
    border-color: transparent;
    color: var(--white);
}
.bento-card.dark h3 { color: var(--white); }
.bento-card.dark p { color: rgba(255,255,255,0.7); }
.bento-card.accent-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    border-color: transparent;
}
.bento-card.accent-card h3 { color: var(--gold-light); }
.bento-card.accent-card p { color: rgba(255,255,255,0.7); }
.bento-card.accent-card .bento-icon { color: var(--gold); }

.bento-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 20px;
}
.bento-card.dark .bento-number { color: rgba(255,255,255,0.1); }

.bento-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}
.bento-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}
.bento-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 14px;
    background: rgba(201,162,39,0.15);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bento-icon {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 20px;
}

/* === VISA ROWS === */
.visas-showcase {
    padding: 120px 0;
    background: var(--white);
}
.visa-rows {
    display: flex;
    flex-direction: column;
}
.visa-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
    border-radius: 0;
}
.visa-row:first-child { border-top: 1px solid var(--gray-200); }
.visa-row:hover {
    background: var(--off-white);
    padding-left: 40px;
}
.visa-row-left {
    display: flex;
    align-items: center;
    gap: 28px;
}
.visa-code {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    min-width: 70px;
    letter-spacing: -0.5px;
}
.visa-info h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}
.visa-info p {
    font-size: 14px;
    color: var(--gray-500);
}
.visa-row-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.visa-popular {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--red);
    padding: 5px 12px;
    border-radius: 100px;
}
.visa-row-right i {
    font-size: 16px;
    color: var(--gray-400);
    transition: all 0.3s;
}
.visa-row:hover .visa-row-right i {
    color: var(--gold);
    transform: translateX(4px);
}

/* === PROCESS === */
.process {
    padding: 120px 0;
    background: var(--dark);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.process-card {
    padding: 36px 28px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s var(--ease);
}
.process-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(201,162,39,0.2);
    transform: translateY(-4px);
}
.process-num {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}
.process-card:hover .process-num { opacity: 0.7; }
.process-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}
.process-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 120px 0;
    background: var(--off-white);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.t-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 36px 30px;
    transition: all 0.3s var(--ease);
}
.t-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.t-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}
.t-card p {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 24px;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 40px;
    height: 40px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}
.t-author strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
}
.t-author span {
    font-size: 12px;
    color: var(--gray-400);
}
.testimonial-more { text-align: center; }
.link-arrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.link-arrow:hover { color: var(--gold); gap: 12px; }

/* === FAQ === */
.faq {
    padding: 120px 0;
    background: var(--white);
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.faq-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}
.faq-left h2 em { font-style: italic; color: var(--red); }
.faq-left > p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.7;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}
.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(201,162,39,0.08);
}
.faq-q {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
}
.faq-q i {
    color: var(--gold);
    transition: transform 0.3s;
    font-size: 14px;
}
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-item.active .faq-a { max-height: 200px; }
.faq-a p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* === FINAL CTA === */
.final-cta {
    padding: 100px 0;
    background: var(--dark);
}
.final-cta-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.final-cta-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
}
.final-cta-inner > p {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.final-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.phone-link {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.phone-link:hover { color: var(--white); }
.phone-link i { color: var(--gold); }

/* === CONTACT === */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.contact-left h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}
.contact-left > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 15px;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-list a,
.contact-info-list span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-600);
    transition: color 0.3s;
}
.contact-info-list a:hover { color: var(--dark); }
.contact-info-list i {
    width: 20px;
    color: var(--gold);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--dark);
    background: var(--off-white);
    transition: all 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201,162,39,0.06);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}
.contact-form button {
    padding: 16px 28px;
    background: var(--dark);
    color: var(--white);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s var(--ease);
    margin-top: 4px;
}
.contact-form button:hover {
    background: var(--dark-3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12,17,27,0.15);
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    padding: 80px 0 40px;
    color: var(--white);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .brand-name {
    display: block;
    font-size: 18px;
    margin-bottom: 16px;
}
.footer-brand > p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    transition: all 0.3s;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.disclaimer { font-size: 11px !important; }

/* === WHATSAPP FLOAT === */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 99;
    transition: all 0.3s var(--ease);
}
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* === AOS === */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* === PAGE HEADER (subpages) === */
.page-header {
    padding: 160px 24px 80px;
    background: var(--dark);
    text-align: center;
}
.page-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 16px;
}
.page-header p {
    color: rgba(255,255,255,0.65);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto;
}

/* === SERVICES DETAIL (subpage) === */
.services-detail { padding: 80px 0; }
.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding: 40px;
    margin-bottom: 16px;
    border-radius: 20px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}
.service-detail-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}
.service-detail-card.reverse { grid-template-columns: 1fr auto; }
.service-detail-card.reverse .service-icon-large { order: 2; }
.service-icon-large {
    width: 64px;
    height: 64px;
    background: var(--dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
}
.service-detail-content h2 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 10px;
}
.service-detail-content p {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.detail-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}
.detail-features li i { color: var(--gold); font-size: 12px; }

/* === CTA PREMIUM (subpage) === */
.cta-premium {
    padding: 100px 24px;
    background: var(--dark);
    text-align: center;
}
.cta-premium h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-premium p {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    margin-bottom: 32px;
}
.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 24px rgba(37,211,102,0.3);
    transition: all 0.3s var(--ease);
}
.btn-cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}

/* === REFS GALLERY (index) === */
.refs-gallery {
    padding: 120px 0;
    background: var(--white);
}
.refs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.refs-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--off-white);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    text-decoration: none;
}
.refs-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.refs-gallery-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: top center;
}
.refs-gallery-item .refs-gallery-info {
    padding: 10px 12px;
}
.refs-gallery-item .refs-gallery-info h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}
.refs-gallery-item .refs-gallery-info p {
    font-size: 11px;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.refs-gallery-item .refs-gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: rgba(22,163,74,0.08);
    color: #16a34a;
    font-size: 10px;
    font-weight: 600;
    border-radius: 100px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .refs-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .refs-gallery-item img { height: 160px; }
}
@media (max-width: 480px) {
    .refs-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .refs-gallery-item img { height: 140px; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-bento { grid-template-columns: 1fr; }
    .bento-row { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .faq-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 100;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a { font-size: 20px; color: var(--white); }

    .hero { min-height: auto; flex-direction: column; }
    .hero-img-wrap { position: relative; height: 300px; }
    .hero-img-wrap img { object-position: center center; }
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(12,17,27,0.2) 0%,
            rgba(12,17,27,0.95) 85%,
            rgba(12,17,27,1) 100%
        ) !important;
    }
    .hero-content { padding: 0 24px 60px; margin-top: -80px; }
    .hero h1 { font-size: 36px; }
    .hero-proof { gap: 20px; }
    .proof-divider { display: none; }

    .bento-row { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .visa-row-left { gap: 16px; }
    .visa-code { font-size: 22px; min-width: 50px; }
    .visa-info h3 { font-size: 16px; }
    .visa-popular { display: none; }

    .service-detail-card,
    .service-detail-card.reverse { grid-template-columns: 1fr; }
    .service-detail-card.reverse .service-icon-large { order: 0; }
    .detail-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; align-items: stretch; }
    .btn-wa, .btn-outline { justify-content: center; }
    .bento-side { gap: 12px; }
    .contact-form { padding: 28px 20px; }
}
