/* UniQ Paradise Island - Styles */

:root {
    --gold: #d4af37;
    --gold-dark: #b8942e;
    --teal: #0d9488;
    --bg: #fff;
    --bg-alt: #f8fafc;
    --bg-card: #fff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
}

[data-theme="dark"] {
    --bg: #0a0a0a;
    --bg-alt: #111;
    --bg-card: #161616;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border: #262626;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 80px;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

nav a:hover {
    color: var(--gold);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.theme-toggle {
    width: 38px;
    height: 38px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
}

.theme-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.theme-toggle .fa-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .fa-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .fa-moon {
    display: none;
}

.theme-toggle span {
    display: none;
}

.mobile-theme {
    display: none;
}

.nav-close {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #0a0a0a;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

/* Hero */
.hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-bg {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    will-change: transform;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section */
.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center;
}

.service-card img.portrait {
    object-position: top center;
}

.service-card-body {
    padding: 14px;
    text-align: center;
}

.service-card-body h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.service-card-body p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Price Table */
.price-table {
    max-width: 600px;
    margin: 0 auto 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.price-table-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    padding: 16px;
    text-align: center;
}

.price-table-header h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-table-header p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
}

.price-row:last-child {
    border: none;
}

.price-row:hover {
    background: var(--bg-alt);
}

.price-route {
    font-size: 0.9rem;
    font-weight: 500;
}

.price-route small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.price-amount span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: 12px;
}

.pricing-note p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.pricing-note strong {
    color: var(--gold);
}

.pricing-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Two Column */
.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.two-col h2 {
    font-size: 1.8rem;
}

/* Features */
.features {
    display: grid;
    gap: 16px;
}

.feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.why-image {
    border-radius: 16px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 40px 20px;
    text-align: center;
    color: #0a0a0a;
}

.cta-banner h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.cta-banner p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.cta-banner .btn {
    background: #0a0a0a;
    color: var(--gold);
}

.cta-banner .btn:hover {
    background: #1a1a1a;
}

/* Contact */
.contact-methods {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.contact-method-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-method-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-method-value {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
}

.form-header i {
    font-size: 1.4rem;
}

.form-header h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.form-header span {
    font-size: 0.75rem;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.contact-form form {
    padding: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 14px;
}

.form-note i {
    color: var(--gold);
}

.verify-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.verify-group label {
    margin-bottom: 0;
    white-space: nowrap;
}

.verify-group label span {
    color: var(--gold);
    font-weight: 700;
}

.verify-group input {
    width: 80px;
    text-align: center;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
}

.form-footer {
    background: var(--bg-alt);
    padding: 14px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.form-footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.form-footer p i {
    color: var(--gold);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* Footer */
footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .logo img {
    height: 50px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-badges span i {
    color: var(--gold);
}

.footer-links h5,
.footer-contact h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-links a,
.footer-contact a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact a i {
    width: 20px;
    color: var(--gold);
}

.footer-contact .social-links {
    margin-top: 16px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
}

.social-link:hover {
    color: var(--gold-dark);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 99;
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-col {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }
    
    .logo img {
        height: 120px;
    }
    
    header {
        padding: 8px 0;
    }
    
    nav {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 200;
    }
    
    nav.active {
        display: flex;
    }
    
    nav a {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    
    .nav-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: var(--bg-alt);
        border: 1px solid var(--border);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--text);
        font-size: 1.2rem;
    }
    
    .nav-close:hover {
        border-color: var(--gold);
        color: var(--gold);
    }
    
    .mobile-theme {
        display: flex;
        width: auto;
        padding: 12px 24px;
        border-radius: 50px;
        gap: 10px;
        margin-top: 10px;
    }
    
    .mobile-theme span {
        display: inline;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .desktop-theme {
        display: none;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
    
    .services-grid {
        gap: 12px;
    }
    
    .service-card img {
        height: 120px;
    }
    
    .service-card-body {
        padding: 12px;
    }
    
    .service-card-body h5 {
        font-size: 0.8rem;
    }
    
    .service-card-body p {
        font-size: 0.65rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-header {
        padding: 16px 20px;
    }
    
    .contact-form form {
        padding: 20px;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 8px;
        padding: 12px 20px;
    }
    
    .verify-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .verify-group input {
        width: 100%;
    }
    
    .pricing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand .logo img {
        margin: 0 auto 14px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-method-value {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .hero {
        height: 360px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .service-card img {
        height: 100px;
    }
    
    .service-card-body h5 {
        font-size: 0.75rem;
    }
}

/* Scroll Reveal Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}