:root {
    --primary: #0a2540;
    --primary-dark: #051a2e;
    --accent: #c5a059;
    --accent-light: #e6c88a;
    --accent-dark: #9d7d3f;
    --accent-gradient: linear-gradient(135deg, #c5a059 0%, #9d7d3f 100%);
    --text: #1a1a1a;
    --text-light: #525f7f;
    --bg: #f8fbfd;
    --white: #ffffff;
    --shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --radius: 12px;
    --radius-lg: 24px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.alt-bg {
    background: linear-gradient(135deg, var(--bg) 0%, rgba(197, 160, 89, 0.05) 100%);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0.08) 100%);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-dark:hover {
    background: var(--accent-gradient);
    color: var(--white);
    transform: translateY(-3px);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent-gradient);
    z-index: 2000;
    transition: width 0.1s ease-out;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white) !important;
    z-index: 1000;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: slideDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links .btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #0d3a5c 100%);
    color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    color: var(--white);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .overline {
    color: var(--accent-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease both;
}

.hero .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.8) 0%, rgba(10, 37, 64, 0.6) 100%),
        url('hero_construction_roi.png') no-repeat center center/cover;
    animation: zoomIn 1.2s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    right: -10%;
    bottom: -20%;
    width: 60%;
    height: 80%;
    border: 2px solid rgba(197, 160, 89, 0.15);
    transform: rotate(-15deg);
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-bg::before {
    content: '';
    position: absolute;
    right: 5%;
    bottom: -10%;
    width: 50%;
    height: 70%;
    border: 2px solid rgba(197, 160, 89, 0.25);
    transform: rotate(-15deg);
    animation: floatAnimation 8s ease-in-out infinite 1s;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0px) rotate(-15deg);
    }

    50% {
        transform: translateY(-20px) rotate(-15deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg) 100%);
    padding: 4rem 0;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--bg) 0%, rgba(197, 160, 89, 0.08) 100%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.check-list {
    margin: 1.5rem 0;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
}

.check-list li:hover {
    transform: translateX(5px);
    color: var(--primary);
}

.check-list li::before {
    content: '✓';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    background: rgba(197, 160, 89, 0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.service-price {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.service-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.03);
}

.service-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
}

.card-header-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 0.6rem 1.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-bottom-left-radius: var(--radius-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* How It Works Section */
.how-it-works {
    background: var(--white);
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

/* Connecting line for desktop */
@media (min-width: 992px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
        opacity: 0.2;
        z-index: 1;
    }
}

.process-step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-num-bg {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.step-num-bg::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.process-step:hover .step-num-bg {
    background: var(--accent-gradient);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.process-step:hover .step-num-bg::after {
    opacity: 0.3;
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(10, 37, 64, 0.7) 100%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.parallax-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.parallax-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Case Studies Section */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.case-study-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.case-study-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-study-header h3 {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
}

.case-study-tag {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.case-study-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.case-study-result {
    background: rgba(197, 160, 89, 0.08);
    padding: 1.5rem;
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.3);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin-top: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
    margin: 1rem 0 0.5rem;
}

.price-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features {
    flex: 1;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    color: var(--text);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(197, 160, 89, 0.08);
    border-radius: var(--radius-lg);
    color: var(--primary);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: rgba(197, 160, 89, 0.3);
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg) 0%, rgba(197, 160, 89, 0.05) 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(197, 160, 89, 0.08) 100%);
}

.faq-question h4 {
    margin: 0;
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
    font-weight: 700;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.audience-list {
    margin-top: 2rem;
}

.audience-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
    animation: fadeInLeft 0.6s ease both;
}

.audience-item:nth-child(1) {
    animation-delay: 0.1s;
}

.audience-item:nth-child(2) {
    animation-delay: 0.2s;
}

.audience-item:nth-child(3) {
    animation-delay: 0.3s;
}

.audience-item:hover {
    transform: translateX(10px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
    flex-shrink: 0;
    transition: var(--transition);
}

.audience-item:hover .icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

.audience-content h2 {
    margin-bottom: 1.5rem;
}

.audience-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    transition: var(--transition);
    animation: fadeInRight 0.8s ease;
    object-fit: cover;
    max-height: 600px;
}

.audience-img:hover {
    transform: scale(1.02);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Why Us Section */
.centred-content {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-item {
    padding: 2.5rem;
    transition: var(--transition);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05) 0%, rgba(197, 160, 89, 0.02) 100%);
    border: 1px solid rgba(197, 160, 89, 0.1);
    animation: scaleIn 0.6s ease both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.3);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(197, 160, 89, 0.05) 100%);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Contact Section */
.contact-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-column-left,
.contact-column-right {
    display: flex;
    flex-direction: column;
}

.form-heading {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
}

.form-summary {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-column-left .badge {
    align-self: flex-start;
    margin-bottom: 1.5rem;
    color: var(--primary);
    border-color: rgba(0, 48, 73, 0.2);
    background: rgba(197, 160, 89, 0.1);
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    flex-grow: 1;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--accent-light);
}

.contact-info-card .icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card .text {
    display: flex;
    flex-direction: column;
}

.contact-info-card .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.contact-info-card .value {
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    background: #f8fafc;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.contact-form button {
    align-self: flex-start;
    padding: 1.25rem 2.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg) 100%);
    color: var(--text);
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.footer-logo img {
    height: 85px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
}

.copyright a {
    color: var(--accent);
    font-weight: 700;
    transition: var(--transition);
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

.delay-5 {
    transition-delay: 0.75s;
}

.delay-6 {
    transition-delay: 0.9s;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        gap: 2rem;
        transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        transform: translateX(100%);
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

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

    .audience-visual {
        order: -1;
        margin-bottom: 3rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
    }

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

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

    h2 {
        font-size: 1.8rem;
    }

    body {
        font-size: 15px;
    }

    .section {
        padding: 3rem 0;
    }

    .parallax-content h2 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .case-study-header {
        flex-direction: column;
    }

    .case-study-tag {
        margin-left: 0;
        margin-top: 1rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-grid::before {
        display: none;
    }

    .process-step {
        padding: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-heading {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form button {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Testimonials Horizontal Scroll */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 0.5rem 0.5rem 1.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        margin: 0;
        box-shadow: var(--shadow);
    }

    .carousel-dots {
        display: flex;
    }

    /* Compact Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .parallax-section {
        min-height: 400px;
        height: auto;
        padding: 4rem 1rem;
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
        background-image: url('hero_construction_roi.png') !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 2rem 0;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        height: auto;
        min-height: 100vh;
        align-items: center;
    }

    .hero-bg {
        height: 100%;
        min-height: 100%;
    }

    .card,
    .contact-form-container,
    .testimonial-card {
        padding: 1rem;
    }

    .parallax-content h2 {
        font-size: 1.4rem;
    }

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

    .contact-item {
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

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

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .feature-item {
        padding: 1.25rem 0.75rem;
    }

    .feature-icon {
        font-size: 2.2rem;
    }
}