/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Removed large-monitor container overrides to keep layout consistent */

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #67879F;
}

h1 {
    font-size: 4.2rem;
    margin: 0 0 1.5rem 0;
    color: #67879F;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #67879F;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #67879F;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    color: #67879F;
}

.logo-image {
    width: 50px;
    height: 50px;
    margin-right: 3px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #67879F;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #938875;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #626A59;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #667eea;
    transform: translateX(5px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #938875;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: #DBC39D;
    color: #67879F;
}

.btn-primary:hover {
    background: #F3F1EC;
    color: #67879F;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(219, 195, 157, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #67879F;
    border: 2px solid #67879F;
}

.btn-secondary:hover {
    background: #67879F;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #626A59;
    border: 2px solid #626A59;
}

.btn-outline:hover {
    background: #626A59;
    color: white;
}

/* Hero Section */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.6) 100%), url('images/decor_bg.png');
    background-size: cover;
    background-position: 75% center;
    background-repeat: no-repeat;
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    z-index: 2;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: flex-start;
}

.hero-text {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-content p {
    font-size: 1.2rem;
    color: #938875;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}



/* removed hero large-monitor overrides; flex-wrap now handles wide screens */


/* Form Section */
.form-section {
    padding: 80px 0;
    background: white;
}

.form-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.form-intro p {
    font-size: 1.2rem;
    color: #938875;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.form-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 40px 0;
}

.form-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.form-option {
    background: white;
    border: 2px solid #C6CBCA;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-option h3 {
    color: #626A59;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.form-option p {
    color: #938875;
    margin-bottom: 20px;
    line-height: 1.6;
}

.form-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #F0F1F5;
    border-radius: 15px;
    border: 2px solid #626A59;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(98, 106, 89, 0.2);
}

.feature i {
    font-size: 2.5rem;
    color: #626A59;
}

.feature span {
    font-weight: 600;
    color: #67879F;
    text-align: center;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
    min-width: 250px;
}







/* Footer */
.footer {
    background: #67879F;
    color: #F3F1EC;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #F0F1F5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #F0F1F5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #9AA497;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #F0F1F5;
    color: #626A59;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #9AA497;
    color: #F0F1F5;
}

/* Responsive Design */
/* removed large-monitor grid overrides; auto-fit handles all widths */
@media (max-width: 1024px) {
    .form-options-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 10px;
        border-radius: 0;
        text-align: center;
    }

    .dropdown-menu li a {
        text-align: center;
        justify-content: center;
    }

    .dropdown-toggle {
        text-align: center;
        justify-content: center;
    }

    .dropdown-toggle i {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .form-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 30px 0;
    }

    .form-options {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 30px 0;
    }

    .form-option {
        padding: 20px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        min-height: 500px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.6) 100%), url('images/decor_bg.png');
    }

    .hero-content {
        padding: 0 1rem;
        height: auto;
        transform: none;
        margin: 0;
        max-width: 100%;
    }

    .hero-content p {
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 0;
    }



    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-content {
        margin: 1rem 0 0 3rem;
        max-width: none;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin: 1rem 0 0 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .checklist-container {
        grid-template-columns: 1fr;
    }

    .budget-summary {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tool-card,
.checklist-category,
.budget-card,
.timeline-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}

.benefits-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-intro h2 {
    color: #67879F;
    margin-bottom: 1rem;
}

.benefits-intro p {
    font-size: 1.2rem;
    color: #938875;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefit-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.benefit-panel:last-child {
    margin-bottom: 0;
}

.benefit-panel.reverse {
    direction: rtl;
}

.benefit-panel.reverse .benefit-content,
.benefit-panel.reverse .benefit-image {
    direction: ltr;
}

.benefit-content {
    padding: 2rem;
}

.benefit-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DBC39D 0%, #F3F1EC 100%);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-separator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F3F1EC 0%, #DDEBEB 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-content h3 {
    font-size: 2rem;
    color: #67879F;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.benefit-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #938875;
    margin-bottom: 2rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
}

.benefit-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #938875;
}

.benefit-features i {
    color: #48bb78;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.benefit-image {
    padding: 2rem;
}

.benefit-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 55, 72, 0.1);
}

.benefit-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 55, 72, 0.15);
}

.image-placeholder {
    background: linear-gradient(135deg, #F3F1EC 0%, #DDEBEB 100%);
    border: 2px dashed #67879F;
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #67879F;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 115, 85, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.image-placeholder:hover {
    border-color: #938875;
    background: linear-gradient(135deg, #F3F1EC 0%, #DDEBEB 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(103, 135, 159, 0.1);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder span {
    text-align: center;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #67879F 0%, #67879F 60%, #F3F1EC 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(240, 241, 245, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(240, 241, 245, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero {
    position: relative;
    margin-bottom: 2.5rem;
    padding-top: 1rem;
}

.contact-decoration {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gradient-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DBC39D 0%, #F3F1EC 100%);
    border-radius: 2px;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
    position: relative;
}

.gradient-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F3F1EC 0%, #DDEBEB 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.contact-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    color: #67879F;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(219, 195, 157, 0.4);
}

.featured-card {
    border-color: #DBC39D;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.featured-card:hover {
    transform: scale(1.05) translateY(-8px);
}

.card-highlight {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #DBC39D, #F3F1EC);
    color: #67879F;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #67879F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(103, 135, 159, 0.3);
}

.contact-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #67879F;
    font-family: 'Playfair Display', Georgia, serif;
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: #938875;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(103, 135, 159, 0.1);
    color: #67879F;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-link:hover {
    background: #67879F;
    color: white;
    transform: translateY(-2px);
}

.contact-link.primary {
    background: #DBC39D;
    color: white;
}

.contact-link.primary:hover {
    background: #F3F1EC;
    color: #67879F;
    border: 2px solid #DBC39D;
    box-shadow: 0 8px 20px rgba(219, 195, 157, 0.4);
}

.contact-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(240, 241, 245, 0.3);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.trust-item i {
    font-size: 1.3rem;
    color: #F0F1F5;
}

/* Benefits Section Responsive Design */
@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-intro {
        margin-bottom: 2rem;
    }

    .benefits-intro h2 {
        font-size: 2.2rem;
    }

    .benefits-intro p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .benefit-panel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }

    .benefit-panel.reverse {
        direction: ltr;
    }

    .benefit-content {
        padding: 1rem;
        order: 1;
    }

    .benefit-image {
        padding: 1rem;
        order: 2;
    }

    .benefit-content h3 {
        font-size: 1.7rem;
    }

    .benefit-content p {
        font-size: 1rem;
    }

    .image-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 40px 0;
    }

    .benefit-separator {
        width: 60px;
        height: 3px;
    }

    .benefit-content h3 {
        font-size: 1.5rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
    }

    .image-placeholder {
        height: 250px;
    }

    .image-placeholder i {
        font-size: 2rem;
    }

    .image-placeholder span {
        font-size: 1rem;
    }
}

/* Contact Section Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-section h2 {
        font-size: 2.2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }

    .contact-card {
        padding: 2rem;
    }

    .featured-card {
        transform: none;
    }

    .featured-card:hover {
        transform: translateY(-8px);
    }

    .contact-decoration {
        display: none;
    }

    .trust-indicators {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .trust-indicators {
        gap: 1.5rem;
    }
}