:root {
    --color-bg: #ffffff;
    --color-text: #000000;
    --color-accent: #c9a24b;
    --font-primary: 'Montserrat', sans-serif;
    --header-height: 80px;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }

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

a:hover {
    color: var(--color-accent);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
}

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

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #b59040;
    color: var(--color-bg);
}

.header-cta {
    margin-left: 30px;
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

/* Footer */
.site-footer {
    background-color: #f9f9f9;
    padding: 60px 0 30px;
    margin-top: auto;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #555;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

.footer-col p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    color: #777;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

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

.social-links a:hover {
    background-color: var(--color-accent);
    color: white;
}

/* Main Content Padding for Sticky Header */
main {
    padding-top: var(--header-height);
    min-height: calc(100vh - 300px); /* Adjust based on footer height */
}

/* --- PAGE SECTIONS (INDEX) --- */
.hero-section {
    padding: 160px 0 120px;
    text-align: center;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.2rem;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.25rem;
    color: #eeeeee;
    margin-bottom: 45px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.trust-bar {
    background-color: var(--color-text);
    color: var(--color-bg);
    text-align: center;
    padding: 18px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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


.service-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: var(--color-accent);
    font-size: 1.2rem;
    line-height: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(201, 162, 75, 0.15);
}

.service-card:hover .service-link::after {
    transform: translateX(5px);
}

/* Why Us */
.why-us-section {
    background-color: #f9f9f9;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.pillar-card {
    text-align: center;
}

.pillar-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.pillar-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid #eaeaea;
    padding: 40px;
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    color: var(--color-accent);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: #444;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.testimonial-author::before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--color-accent);
    margin-right: 15px;
}

/* CTA Band */
.cta-band {
    background-color: var(--color-accent);
    padding: 80px 0;
    text-align: center;
}

.cta-band h2 {
    color: var(--color-bg);
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.cta-band .btn {
    background-color: var(--color-text);
    color: var(--color-bg);
}

.cta-band .btn:hover {
    background-color: #333;
}

/* Services Page Dedicated Rows */
.service-row {
    display: flex;
    flex-direction: column;
    padding: 80px 0;
    border-bottom: 1px solid #eaeaea;
    gap: 30px;
}

.service-row:last-of-type {
    border-bottom: none;
}

.service-row-header {
    flex: 0 0 350px;
}

.service-row-content {
    flex: 1;
}

.service-row-icon {
    width: 60px;
    height: 60px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.service-row h2 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--color-text);
    line-height: 1.3;
}

.service-row-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-row-content p:last-child {
    margin-bottom: 0;
}

.service-row-content p strong {
    color: var(--color-text);
    font-weight: 600;
}

/* FAQ Accordion */
.faq-item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    outline: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.7;
    animation: slideDown 0.3s ease-out forwards;
}

.faq-answer p {
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- BLOG --- */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-tab {
    padding: 8px 20px;
    border: 1px solid #eaeaea;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    background: var(--color-bg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-tab:hover, .filter-tab.active {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--color-bg);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid #eaeaea;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
}

.blog-category {
    color: var(--color-accent);
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.article-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 60px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    margin-top: 50px;
    margin-bottom: 20px;
}

.article-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

/* --- CONTACT PAGE --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
}

.contact-form-container {
    background: var(--color-bg);
    border: 1px solid #eaeaea;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    background-color: #fafafa;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--color-bg);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 2px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #e6f7eb;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-message.error {
    display: block;
    background-color: #fce8e6;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--color-text);
}

.detail-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.detail-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    margin-right: 15px;
    flex-shrink: 0;
}

.detail-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.detail-text strong {
    color: var(--color-text);
    display: block;
    margin-bottom: 5px;
}

.map-container {
    margin-top: 40px;
    width: 100%;
    height: 300px;
    background-color: #eaeaea;
    border: 1px solid #ddd;
}

/* Responsive */
@media (min-width: 576px) {
    .footer-grid,
    .services-grid,
    .pillars-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid,
    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 80px;
    }
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    .header-cta {
        margin-left: 0;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* --- SERVICES TAB LAYOUT --- */
.services-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: #777;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.tab-btn:hover {
    color: var(--color-text);
}

.tab-btn.active {
    color: var(--color-accent);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-accent);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

/* Service Accordions */
.service-accordion {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-accordion:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    list-style: none;
    outline: none;
}

.service-accordion-header::-webkit-details-marker {
    display: none;
}

.service-accordion-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-text);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.service-accordion[open] .accordion-icon {
    transform: rotate(180deg);
}

.service-accordion-body {
    padding: 0 25px 25px;
    border-top: 1px solid #f5f5f5;
    margin-top: 5px;
    padding-top: 20px;
    animation: slideDown 0.3s ease-out forwards;
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.documents-required {
    background: #fdfbf7;
    border-left: 4px solid var(--color-accent);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.documents-required h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--color-text);
    font-size: 1.1rem;
}

.documents-required ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
    line-height: 1.6;
}

.documents-required li {
    margin-bottom: 8px;
}

.documents-required li:last-child {
    margin-bottom: 0;
}

.service-enquire-link {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-enquire-link:hover {
    color: #b59040;
    text-decoration: underline;
}

/* CTA Band */
.cta-band {
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cta-band h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 2rem;
}

.cta-band .btn {
    background: #111111;
    color: #ffffff;
}

.cta-band .btn:hover {
    background: #333333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- SERVICE CARDS (INDEX) --- */
.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card-icon {
    width: 50px;
    height: 50px;
    background: #fdfbf7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .service-enquire-link {
    font-size: 0.95rem;
    align-self: flex-start;
}
