/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=DM+Sans:opsz,wght@9..40,400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* core/reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #fdfbf7;
    color: #333333;
    line-height: 1.7;
    overflow-x: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; /* Soft serif for elegance/trust */
    font-weight: 600;
    color: #1a1a1a; /* Charcoal */
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.75rem;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }
}

p {
    margin-bottom: 1.5rem;
    color: #4a4a4a; /* Dark Grey for body */
    font-size: 1.05rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* layout/components */
.container {
    width: 100%;
    max-width: 1100px; /* Slightly narrower for editorial feel */
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 4px; /* Soft square, not pills */
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
    font-size: 1rem;
}

.btn-primary {
    background-color: #8c7b75; /* Muted Bronze/Taupe */
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #7a6a64;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #8c7b75; 
    color: #8c7b75;
}

.btn-secondary:hover {
    background-color: #8c7b75;
    color: #ffffff;
}

/* Navigation & Header */
header {
    width: 100%;
    padding: 1.5rem 0;
    background: #fdfbf7;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.6rem; 
    letter-spacing: -0.01em; 
    color:#1a1a1a;
    transition: opacity 0.3s ease;
}

/* Desktop Nav */
nav {
    display: flex;
    align-items: center;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #1a1a1a;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a1a1a;
    cursor: pointer;
    padding: 0.5rem;
}

/* sections */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
    background-color: #f4f1ea; /* Slightly darker parchment for contrast */
}

/* Editorial feel for cards */
.step-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }

/* Grid System Improvement */
.grid { 
    display: grid; 
    gap: 2rem; 
}

@media (min-width: 768px) {
    .grid { gap: 3rem; }
    .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .hero { min-height: 70vh; }
}

.disclaimer-box {
    background: #f8f8f8;
    border-left: 3px solid #d4d4d4;
    padding: 2rem;
    font-size: 0.9rem;
    color: #666;
    margin-top: 4rem;
    line-height: 1.6;
}

/* Mobile Layouts */
@media (max-width: 768px) {
    header { padding: 1rem 0; }
    
    .mobile-nav-toggle { display: block; }
    
    nav {
        position: fixed;
        top: 70px; /* Header height */
        left: 0;
        width: 100%;
        background: #fdfbf7;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
    }

    nav.active {
        transform: translateY(0);
    }

    nav a {
        margin-left: 0;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }

    nav .btn-primary {
        margin-left: 0 !important;
        width: 100%;
    }

    .hero {
        padding: 4rem 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Fix overlapping text/padding issues */
    .container {
        padding: 0 1.5rem;
    }

    [style*="padding-left: 3rem"],
    [style*="padding-right: 3rem"],
    [style*="padding-left: 2rem"],
    [style*="padding-right: 2rem"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .grid-cols-2, .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Brand Identity */
.mobile-call-btn {
    display: none;
    margin-right: 1rem;
    color: #1a1a1a;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .mobile-call-btn { display: inline-block; }
}

/* Floating Actions */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
}
