/* ============================================ */
/* RESET & BASE STYLES */
/* ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.5;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* ============================================ */
/* TYPOGRAPHY & SECTION STYLES */
/* ============================================ */

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f3b2c;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #0f3b2c;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 24px auto 0;
    line-height: 1.6;
}

/* ============================================ */
/* PROFESSIONAL NAVBAR */
/* ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.98);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-image {
    height: 36px;
}

/* Navigation Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: #0f3b2c;
    background: rgba(15, 59, 44, 0.04);
}

.nav-link.active {
    color: #0f3b2c;
    background: rgba(15, 59, 44, 0.06);
    font-weight: 600;
}

/* Enquiry Button */
.btn-enquiry {
    display: inline-block;
    background: #0f3b2c;
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #0f3b2c;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.btn-enquiry:hover {
    background: #1a4d2e;
    border-color: #1a4d2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 59, 44, 0.2);
}

/* Menu Toggle - Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #f8fafc;
    color: #0f3b2c;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    background: #e2e8f0;
}

/* ============================================ */
/* PROFESSIONAL HERO SECTION */
/* ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    padding: 140px 0 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Subtle Grid Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(15, 59, 44, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 59, 44, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: rgba(15, 59, 44, 0.03);
    padding: 8px 16px 8px 8px;
    border-radius: 40px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #0f3b2c;
    border-radius: 50%;
}

.badge-line {
    width: 30px;
    height: 2px;
    background: #0f3b2c;
    opacity: 0.3;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0f3b2c;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-highlight {
    color: #0f3b2c;
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(15, 59, 44, 0.1);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background: #0f3b2c;
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #0f3b2c;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 59, 44, 0.15);
}

.btn-primary:hover {
    background: #1a4d2e;
    border-color: #1a4d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 59, 44, 0.2);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #0f3b2c;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid #0f3b2c;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(15, 59, 44, 0.04);
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 24px;
    padding-top: 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.9rem;
}

.trust-item i {
    color: #0f3b2c;
    font-size: 1rem;
}

/* Hero Stats Card */
.hero-stats-card {
    background: white;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hero-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(15, 59, 44, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

.stat-item {
    text-align: left;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f3b2c;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #64748b;
}

.stat-trend i {
    font-size: 0.7rem;
    color: #0f3b2c;
}

/* Featured Badge */
.featured-badge {
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.badge-title {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-logos {
    display: flex;
    gap: 28px;
}

.badge-logos span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    opacity: 0.7;
    transition: all 0.2s ease;
    position: relative;
    cursor: default;
}

.badge-logos span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0f3b2c;
    transition: width 0.2s ease;
}

.badge-logos span:hover {
    opacity: 1;
}

.badge-logos span:hover::after {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #0f3b2c, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0.3);
        transform-origin: top;
        opacity: 0.3;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
    100% {
        transform: scaleY(0.3);
        transform-origin: bottom;
        opacity: 0.3;
    }
}

/* Floating Elements */
.hero-float-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.float-1 {
    top: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(15, 59, 44, 0.02) 0%, transparent 70%);
    border-radius: 50%;
}

.float-2 {
    bottom: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(15, 59, 44, 0.02) 0%, transparent 70%);
    border-radius: 50%;
}

/* ============================================ */
/* ABOUT SECTION */
/* ============================================ */

.about-section {
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-paragraph {
    margin-bottom: 24px;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.highlight-box {
    background: white;
    border-left: 4px solid #0f3b2c;
    padding: 30px;
    margin: 32px 0;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    color: #0f3b2c;
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-family: 'Inter', sans-serif;
    color: #0f3b2c;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.highlight-content p {
    color: #475569;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 59, 44, 0.1);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0f3b2c;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-icon {
    font-size: 2.5rem;
    color: #0f3b2c;
    margin-bottom: 16px;
}

.stat-card .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.stat-desc {
    color: #64748b;
    font-size: 0.95rem;
}

/* ============================================ */
/* SERVICES SECTION */
/* ============================================ */

.services-section {
    background: #ffffff;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 59, 44, 0.1);
    border-color: rgba(15, 59, 44, 0.1);
}

.service-icon {
    font-size: 2.8rem;
    color: #0f3b2c;
    margin-bottom: 24px;
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.service-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================ */
/* CONTACT SECTION */
/* ============================================ */

.contact-section {
    background: #f8fafc;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 40px auto;
}

.contact-details-card {
    flex: 1;
    background: white;
    border-left: 4px solid #0f3b2c;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-details-card h3 {
    margin-top: 0;
    color: #0f3b2c;
    border-bottom: 2px solid rgba(15, 59, 44, 0.1);
    padding-bottom: 12px;
    display: inline-block;
    font-size: 1.4rem;
}

.contact-info {
    margin-top: 25px;
}

.contact-info h4 {
    color: #0f3b2c;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-info p {
    color: #1e293b;
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.6;
}

.contact-info a {
    color: #0f3b2c;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.financial-excellence-box {
    flex: 1;
    background: linear-gradient(135deg, #0f3b2c 0%, #1a4d2e 100%);
    color: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 59, 44, 0.2);
}

.excellence-header {
    text-align: center;
    margin-bottom: 25px;
}

.excellence-header h3 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
    font-weight: 600;
}

.excellence-description {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
    text-align: center;
}

.excellence-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.excellence-stat {
    text-align: center;
    flex: 1;
}

.excellence-stat .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #a5d6a7;
}

.excellence-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.excellence-features {
    margin-bottom: 30px;
}

.excellence-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: white;
}

.excellence-features .feature span {
    margin-left: 10px;
    color: #e8f5e9;
}

.excellence-quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.excellence-quote p {
    margin: 0;
    font-style: italic;
    font-size: 1rem;
    color: white;
}

.office-maps {
    margin-top: 60px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.office-maps h3 {
    text-align: center;
    color: #0f3b2c;
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.maps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.map-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-header {
    background: #0f3b2c;
    color: white;
    padding: 15px;
    text-align: center;
}

.map-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.map-frame {
    height: 250px;
    background: #f0f7f0;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-address {
    padding: 15px;
    background: white;
}

.map-address p {
    margin: 0;
    color: #1e293b;
    font-size: 0.95rem;
}

/* ============================================ */
/* ENQUIRY SECTION */
/* ============================================ */

.enquiry-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 24px;
}

.enquiry-left {
    flex: 1;
    max-width: 500px;
}

.enquiry-left h2 {
    color: #0f3b2c;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.enquiry-left p {
    color: #475569;
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 18px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(15, 59, 44, 0.08);
    border-left: 4px solid #0f3b2c;
}

.benefit-icon {
    background: #0f3b2c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #0f3b2c;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.office-hours {
    background: #f8fafc;
    padding: 22px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.office-hours p {
    margin: 0 0 12px 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.office-hours strong {
    color: #0f3b2c;
}

.enquiry-right {
    flex: 1;
    max-width: 550px;
}

.enquiry-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #0f3b2c;
}

.enquiry-form-container h3 {
    color: #0f3b2c;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
}

.enquiry-form-container p {
    color: #64748b;
    margin: 0 0 30px 0;
    font-size: 0.95rem;
    text-align: center;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-message {
    display: none;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    color: #0f3b2c;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-label span {
    color: #0f3b2c;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #0f3b2c;
    background: white;
    box-shadow: 0 0 0 3px rgba(15, 59, 44, 0.1);
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    background: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.form-select:focus {
    outline: none;
    border-color: #0f3b2c;
    background: white;
    box-shadow: 0 0 0 3px rgba(15, 59, 44, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    resize: vertical;
    min-height: 140px;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.form-textarea:focus {
    outline: none;
    border-color: #0f3b2c;
    background: white;
    box-shadow: 0 0 0 3px rgba(15, 59, 44, 0.1);
}

.form-checkbox {
    margin-bottom: 15px;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    padding: 12px;
    background: #f8fafc;
    border-radius: 6px;
}

.form-checkbox input {
    margin-right: 10px;
    margin-top: 2px;
    min-width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-submit {
    background: #0f3b2c;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
}

.form-submit:hover {
    background: #1a4d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 59, 44, 0.2);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.form-footer p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */

.footer {
    background: #0f3b2c;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

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

.footer-logo .logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.footer-description {
    color: #a5d6a7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #a5d6a7;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a5d6a7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-disclaimer p {
    color: #a5d6a7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #a5d6a7;
    font-size: 0.9rem;
}

.design-credit {
    margin-top: 8px;
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ============================================ */
/* BACK TO TOP BUTTON */
/* ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0f3b2c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 59, 44, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top:hover {
    background: #1a4d2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 59, 44, 0.4);
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

/* Large Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.4rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .hero-stats-card {
        padding: 28px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-right {
        gap: 16px;
    }
    
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 64px);
        padding: 24px;
        gap: 8px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 16px;
        font-size: 1rem;
        width: 100%;
        text-align: left;
    }
    
    .btn-enquiry {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-underline {
        bottom: 4px;
        height: 6px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 550px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .float-1, .float-2 {
        display: none;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .enquiry-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .enquiry-left,
    .enquiry-right {
        max-width: 100%;
    }
    
    .maps-grid {
        flex-direction: column;
    }
    
    .map-card {
        min-width: 100%;
    }
}

/* Mobile Large */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        padding: 6px 12px 6px 6px;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-stats-card {
        padding: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .badge-logos {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .enquiry-form-container {
        padding: 25px 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-stats-card {
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ============================================ */
/* LOADING SCREEN */
/* ============================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f3b2c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* ============================================ */
/* SUCCESS MESSAGE */
/* ============================================ */

.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 10000;
    border-top: 4px solid #0f3b2c;
    animation: messageAppear 0.3s ease forwards;
    max-width: 400px;
    width: 90%;
}

@keyframes messageAppear {
    to { transform: translate(-50%, -50%) scale(1); }
}

.success-message i {
    font-size: 3rem;
    color: #0f3b2c;
    margin-bottom: 15px;
    display: block;
}

.success-message h3 {
    color: #0f3b2c;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.success-message p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.success-ok-btn {
    padding: 10px 30px;
    background: #0f3b2c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.success-ok-btn:hover {
    background: #1a4d2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 59, 44, 0.2);
}