/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a 
{
    text-decoration: none;;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #2c2c2c;
    --accent-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   NEW FOOTER GRID + FLOATING UI
   ======================================== */
.footer-top { /* styles for the 4-column layout */
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.footer-col p, .footer-col li a {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--primary-color); padding-left: 6px; }

.partner-logos { display:flex; gap:0.6rem; margin-top:0.8rem; }
.partner-logos img { width:48px; height:48px; object-fit:cover; border-radius:8px; opacity:0.95; }

.footer-bottom-inner { display:flex; align-items:center; justify-content:center; gap:1rem; max-width:1200px; margin:0 auto; padding-top:1rem; text-align:center; flex-direction:column; }
.footer-bottom-inner p { margin:0; color: rgba(255,255,255,0.8); }
.start-journey { background: linear-gradient(135deg, var(--primary-color), #c99456); padding:0.7rem 1.2rem; border-radius:40px; color:var(--white); font-weight:700; text-decoration:none; display:inline-block; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.start-journey:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 30px rgba(212,165,116,0.25); }

/* Floating WhatsApp button on left */
.whatsapp-float {
    position: fixed;
    left: 18px;
    bottom: 30px;
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float i { font-size: 1.4rem; }
.whatsapp-float:hover { transform: translateY(-6px) scale(1.05); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }

/* Scroll to top button on right bottom */
.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #c99456);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 1200;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(212,165,116,0.25);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top i { font-size: 1rem; }
.scroll-top:hover { transform: translateY(-6px) scale(1.05); }

/* Hamburger adjustments */
.hamburger { background: transparent; border: none; padding: 0.2rem; display:flex; align-items:center; justify-content:center; }
.hamburger span { background: var(--white); }
.hamburger span:nth-child(1), .hamburger span:nth-child(3) { width: 26px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger.active span { background: var(--primary-color); }

/* Footer chat button (appears in footer-top) */
.footer-chat-btn {
    display:inline-flex; align-items:center; gap:0.6rem;
    background: linear-gradient(135deg, var(--primary-color), #c99456);
    color: #fff; padding:0.6rem 1rem; border-radius:12px; font-weight:700; text-decoration:none;
    box-shadow: 0 10px 30px rgba(212,165,116,0.18); transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}
.footer-chat-btn i { font-size:1.1rem; }
.footer-chat-btn span { font-size:0.95rem; }
.footer-chat-btn:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 40px rgba(212,165,116,0.28); }


/* Subscribe control */
.subscribe { display:flex; gap:0.5rem; align-items:center; }
.subscribe input[type="email"] { padding:0.6rem 0.85rem; border-radius:10px; border:1px solid rgba(0,0,0,0.06); width:220px; max-width:60vw; font-size:0.95rem; }
.subscribe-btn { background: linear-gradient(135deg,var(--secondary-color), var(--primary-color)); color:#fff; border:none; padding:0.55rem 0.9rem; border-radius:10px; font-weight:700; cursor:pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.subscribe-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.subscribe-note { display:block; margin-top:0.45rem; color: rgba(255,255,255,0.75); font-size:0.9rem; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }


@media (max-width: 768px) {
    body { overflow-x: hidden; }
    .navbar-container { padding: 0 1rem; }
    .footer-bottom-inner { flex-direction: column; align-items: center; gap: 0.5rem; }
    .whatsapp-float { left: 12px; bottom: 30px; width: 50px; height: 50px; }
    .scroll-top { right: 12px; bottom: 30px; width: 50px; height: 50px; }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ========================================
   NAVBAR STYLES
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.navbar-brand i {
    font-size: 1.8rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.book-btn {
    background: linear-gradient(135deg, var(--primary-color), #c99456);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: var(--white) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   RESPONSIVE NAVBAR
   ======================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-sm);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .nav-link::after {
        bottom: 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    gap: 4rem;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #c99456);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 500px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 6rem 2rem;
    background: var(--white);
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #000;
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links { display:flex; gap:0.6rem; margin-top:1rem; align-items:center; }

/* New premium social buttons */
.social-btn {
    display:inline-flex; align-items:center; justify-content:center;
    width:46px; height:46px; border-radius:12px; color:#fff; text-decoration:none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18); transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.social-btn i { font-size:1.1rem; }
.social-btn:hover { transform: translateY(-6px) scale(1.06); box-shadow: 0 16px 40px rgba(0,0,0,0.25); opacity:0.98; }

/* platform colors */
.social-btn.facebook { background: linear-gradient(135deg,#3b5998,#2d4373); }
.social-btn.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-btn.twitter { background: linear-gradient(135deg,#1DA1F2,#0d8bf2); }
.social-btn.pinterest { background: linear-gradient(135deg,#bd081c,#8a0615); }

/* make follow label next to icons for larger screens */
.follow-label { display:none; margin-left:0.6rem; color: rgba(255,255,255,0.85); font-weight:600; }
@media (min-width: 900px) { .follow-label { display:inline-block; } }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 3rem 1rem;
        gap: 2rem;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .image-wrapper {
        height: 300px;
    }

    .features h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
