@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --sage: #9CAF88;
    --sage-light: #B8C9A9;
    --sage-dark: #7A8F6A;
    --cream: #F5F1EB;
    --cream-light: #FDFCFA;
    --oat: #D4C8B8;
    --oat-dark: #B8A994;
    --text-dark: #3A3A3A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow: rgba(58, 58, 58, 0.08);
    --shadow-md: rgba(58, 58, 58, 0.12);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--sage);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--sage-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--sage-dark);
    border: 2px solid var(--sage);
}

.btn-secondary:hover {
    background-color: var(--sage);
    color: var(--white);
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

header {
    background-color: var(--cream);
    position: relative;
    z-index: 1000;
}

.header-top {
    background-color: var(--sage);
    padding: 8px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.header-top-info span {
    color: var(--white);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-top-info i {
    font-size: 0.9rem;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sage-dark);
}

.logo span {
    color: var(--oat-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--sage-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sage);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav .btn {
    padding: 10px 20px;
}

.hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
    opacity: 0.2;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content h1 span {
    color: var(--sage-dark);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow-md);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--sage-light);
    border-radius: 12px;
    z-index: -1;
}

.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--cream-light);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--sage-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-preview {
    background-color: var(--cream);
}

.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -8px;
    background-color: var(--sage);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.about-image-badge strong {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--sage);
    font-size: 1.1rem;
}

.process {
    background-color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--sage);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: var(--white);
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: var(--white);
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-info strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.cta {
    background-color: var(--cream);
    text-align: center;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-md);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--oat) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 4rem;
    color: var(--white);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sage-dark);
    margin-bottom: 15px;
}

.product-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    color: var(--sage-dark);
}

.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background-color: var(--cream);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
}

.contact-info-card i {
    font-size: 1.5rem;
    color: var(--sage);
    width: 40px;
}

.contact-info-card h4 {
    margin-bottom: 5px;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background-color: var(--cream);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--oat);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    accent-color: var(--sage);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.map-section {
    background-color: var(--cream);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-container iframe {
    display: block;
}

.about-intro {
    background-color: var(--white);
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.values-section {
    background-color: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--sage);
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.team-section {
    background-color: var(--white);
}

.error-page {
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream);
}

.error-content {
    text-align: center;
    padding: 40px 20px;
}

.error-code {
    font-size: clamp(6rem, 20vw, 12rem);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--sage);
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h1 {
    margin-bottom: 15px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.thankyou-page {
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 100%);
}

.thankyou-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    background-color: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thankyou-icon i {
    font-size: 3rem;
    color: var(--white);
}

.thankyou-content h1 {
    margin-bottom: 15px;
}

.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.policy-content {
    background-color: var(--white);
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
}

.policy-text h2 {
    margin: 35px 0 15px;
    font-size: 1.4rem;
}

.policy-text h3 {
    margin: 25px 0 10px;
    font-size: 1.15rem;
}

.policy-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.policy-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-text ul li {
    color: var(--text-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sage);
}

footer {
    background-color: var(--text-dark);
    color: var(--cream);
    padding: 40px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--oat);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--oat);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--sage-light);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--oat);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--sage-light);
    width: 16px;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--oat);
    font-size: 0.85rem;
}

.footer-abn {
    color: var(--oat);
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons i {
    font-size: 1.8rem;
    color: var(--oat);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup h4 {
    margin-bottom: 10px;
}

.privacy-popup p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup-buttons .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.subpage-content {
    background-color: var(--white);
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    margin-bottom: 15px;
}

.content-block p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: var(--cream);
    border-radius: 8px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--sage);
}

.benefit-item h4 {
    margin-bottom: 5px;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-highlight {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
}

.pricing-highlight h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.pricing-highlight p {
    color: rgba(255,255,255,0.9);
}

.faq-section {
    background-color: var(--cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
}

@media (max-width: 992px) {
    .hero .container,
    .about-preview .container,
    .about-intro .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 830px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--cream);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px var(--shadow);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .header-top-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .service-card,
    .value-card {
        padding: 25px 15px;
    }
}
