/* Reset & Base Styles */
:root {
    --font-family-default: "Outfit", sans-serif;
    --font-family-title: "Noto Serif", serif;
    --font-size-default: 16px;
    
    --primary: #003478; 
    --secondary: #f16130; 
    --light: #f8f9fa;
    --dark: #111111;
    --text-color: #444444;
    
    --default-transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-title);
    color: var(--dark);
    line-height: 1.2;
}

p {
    margin-bottom: 20px;
}

.lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
}

.section-title span {
    display: block;
    font-size: 13px;
    font-family: var(--font-family-default);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 60px;
}

.section-title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 45px;
    height: 1px;
    background: var(--secondary);
}

.section-title.center span {
    padding-left: 0;
    text-align: center;
}

.section-title.center span::before {
    display: none;
}

.section-title.center h2 {
    text-align: center;
}

.section-title h2 {
    font-size: clamp(36px, 4.5vw, 64px);
    letter-spacing: -0.02em;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hdr-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.hdr-nav {
    display: flex;
    justify-content: flex-start;
}

.hdr-logo {
    text-align: center;
}

.hdr-smi {
    display: flex;
    justify-content: flex-end;
}

.hdr-logo h2 {
    font-family: var(--font-family-title);
    font-size: 28px;
    color: var(--primary);
    letter-spacing: 0.1em;
    font-weight: 400;
    transition: color 0.4s ease;
}

.hdr-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.hdr-nav ul li a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.4s ease;
}

.hdr-nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
    transition: var(--default-transition);
}

.hdr-nav ul li a:hover::after, .hdr-nav ul li a.active::after {
    width: 100%;
}

.hdr-nav ul li a:hover {
    color: var(--secondary);
}

.hdr-contact-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--default-transition);
}

.hdr-contact-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 102;
}

.mobile-menu-toggle span {
    width: 35px;
    height: 2px;
    background: var(--dark);
    transition: var(--default-transition);
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: #ffffff;
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #ffffff;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    z-index: 101;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--default-transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-list a {
    color: #ffffff;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
}

/* Buttons */
.site-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 45px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    border: none;
}

.site-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.site-btn:hover::before {
    left: 0;
}

.site-btn.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.site-btn.btn-outline:hover {
    color: #ffffff;
    border-color: var(--secondary);
}

/* Image Reveal Wrapper */
.reveal-img {
    overflow: hidden;
    position: relative;
}

.reveal-img img {
    transform-origin: left;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%; /* For parallax */
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 15, 30, 0.7);
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 2;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px; /* Offset for header */
}

.hero-title span {
    display: inline-block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: 25px;
}

.hero-title h1 {
    font-family: var(--font-family-title);
    font-size: clamp(60px, 8vw, 130px);
    color: #ffffff;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero-text p {
    color: rgba(255,255,255,0.9);
    font-family: var(--font-family-default);
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 700px;
    line-height: 1.8;
}

/* Glassmorphism Hero Button */
.hero-btn-container .site-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 22px 55px;
    letter-spacing: 0.25em;
    backdrop-filter: blur(5px);
    color: #ffffff;
}

.hero-btn-container .site-btn::before {
    background: #ffffff;
}

.hero-btn-container .site-btn:hover {
    color: var(--dark);
    border-color: #ffffff;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hero-btn-container .site-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 22px 55px;
    letter-spacing: 0.25em;
    backdrop-filter: blur(5px);
}

.hero-btn-container .site-btn::before {
    background: #ffffff;
}

.hero-btn-container .site-btn:hover {
    color: var(--dark);
    border-color: #ffffff;
}

/* About Section */
.about-section {
    padding: 180px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.about-text {
    flex: 1;
    padding-right: 40px;
}

.about-stats {
    display: flex;
    gap: 60px;
    margin: 50px 0;
    padding-top: 40px;
    border-top: 1px solid #eaeaea;
}

.stat-item h3 {
    font-size: 56px;
    font-family: var(--font-family-default);
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-item p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.about-image {
    flex: 1.2;
    position: relative;
    min-height: 700px;
}

.img-main {
    width: 85%;
    height: 700px;
    margin-left: auto;
}

.img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-second {
    position: absolute;
    bottom: -50px;
    left: -40px;
    width: 45%;
    height: 400px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 15px solid #ffffff;
    z-index: 2;
}

.img-second img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-highlight {
    position: absolute;
    top: 50px;
    left: -80px;
    background: #ffffff;
    padding: 40px;
    max-width: 320px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    z-index: 3;
    border-left: 4px solid var(--secondary);
}

.highlight-icon {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.about-highlight h4 {
    color: var(--dark);
    font-family: var(--font-family-title);
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    font-weight: 400;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 150px 0;
    background: var(--light);
}

.why-us-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-top: 100px;
}

.feature-box {
    position: relative;
    padding: 20px 0 0 30px;
    background: transparent;
    border-left: 1px solid rgba(0,0,0,0.1);
    transition: var(--default-transition);
}

.feature-box:hover {
    border-left-color: var(--secondary);
    transform: translateY(-8px);
}

.feature-number {
    font-family: var(--font-family-title);
    font-size: 140px;
    color: rgba(0,0,0,0.03);
    position: absolute;
    top: -80px;
    left: -10px;
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    transition: var(--default-transition);
}

.feature-box:hover .feature-number {
    color: rgba(241, 97, 48, 0.05); /* Faint secondary color */
    transform: translateX(15px);
}

.feature-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: var(--font-family-title);
    position: relative;
    z-index: 1;
}

.feature-box p {
    margin: 0;
    font-size: 15px;
    position: relative;
    z-index: 1;
    color: #555555;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 150px 0;
    background: #ffffff;
    overflow: hidden;
}

.services-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.services-header p {
    max-width: 400px;
    margin-bottom: 10px;
}

.service-card {
    position: relative;
    height: 600px; /* Made taller for elegance */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateZ(0); /* Fix Safari rounding border overflow */
}

.service-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px 40px;
    background: linear-gradient(to top, rgba(0,25,60,0.95) 0%, rgba(0,25,60,0.4) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--default-transition);
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(0,25,60,0.98) 0%, rgba(0,25,60,0.6) 50%, rgba(0,25,60,0.1) 100%);
}

.service-card-overlay h3 {
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 400;
    transform: translateY(25px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-link {
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-link span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-size: 16px;
    transition: var(--default-transition);
}

.service-card:hover h3 {
    transform: translateY(0);
}

.service-card:hover .service-link {
    transform: translateY(0);
    opacity: 1;
}

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

/* Splide Arrows Styling */
.splide__track {
    padding-bottom: 20px;
}

.services-slider .splide__arrow {
    background: #ffffff;
    width: 60px;
    height: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 1;
    transition: var(--default-transition);
}

.services-slider .splide__arrow:hover {
    background: var(--primary);
}

.services-slider .splide__arrow svg {
    fill: var(--primary);
    width: 20px;
    height: 20px;
    transition: var(--default-transition);
}

.services-slider .splide__arrow:hover svg {
    fill: #ffffff;
}

.services-slider .splide__arrow--prev {
    left: -30px;
}

.services-slider .splide__arrow--next {
    right: -30px;
}

/* Portfolio Section */
/* Process Section Timeline */
.process-section {
    padding: 120px 0;
    background-color: #f8f9fa;
}

.process-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-timeline {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step.reverse {
    flex-direction: column;
}

.process-img {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.process-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.process-content {
    position: relative;
    padding-top: 15px;
}

.step-num {
    font-size: 80px;
    font-family: var(--font-family-title);
    font-weight: 700;
    color: rgba(0, 52, 120, 0.06); /* faint primary */
    line-height: 0.8;
    position: absolute;
    top: -30px;
    left: -15px;
    z-index: 0;
}

.process-step.reverse .step-num {
    left: -15px;
    right: auto;
}

.process-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.process-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.testi-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    z-index: -2;
}

.testi-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,25,60,0.95) 0%, rgba(0,10,35,0.95) 100%);
    z-index: -1;
}

.testimonials-section .section-title h2 {
    color: #ffffff;
}

.testimonials-section .section-title span {
    color: rgba(255,255,255,0.6);
}

.testimonials-wrap {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.testi-slider {
    margin-top: 60px;
}

.testi-card {
    background: transparent;
    padding: 20px 40px;
    text-align: center;
    position: relative;
}

.testi-quote-mark {
    font-family: var(--font-family-title);
    font-size: 240px;
    color: rgba(255, 255, 255, 0.04);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.stars {
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testi-card p {
    font-family: var(--font-family-title);
    font-size: clamp(24px, 3vw, 36px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.author-info span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary);
}

.testi-slider .splide__pagination {
    bottom: -40px;
}
.testi-slider .splide__pagination__page {
    background: rgba(255,255,255,0.3);
    margin: 3px;
    transition: var(--default-transition);
}
.testi-slider .splide__pagination__page.is-active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 180px 0;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -2;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,15,40,0.9) 0%, rgba(0,5,15,0.7) 100%);
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-sub {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-sub::before, .cta-sub::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--secondary);
    opacity: 0.5;
}

.cta-content h2 {
    font-size: 72px;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.1;
    font-family: var(--font-family-title);
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-content p {
    font-family: var(--font-family-default);
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 50px;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    line-height: 1.6;
}

.cta-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 22px 55px;
    letter-spacing: 0.25em;
    backdrop-filter: blur(5px);
}

.cta-btn::before {
    background: #ffffff;
}

.cta-btn:hover {
    color: var(--dark);
    border-color: #ffffff;
}

/* Contact Section (Split Screen) */
.contact-section {
    padding: 0;
    background: #ffffff;
}

.contact-split {
    display: flex;
    min-height: 900px;
}

.contact-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.contact-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content {
    flex: 1.2;
    padding: 120px 8% 120px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-intro {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 500px;
}

.contact-form-wrap {
    margin-bottom: 60px;
}

.input-group {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.input-group label {
    display: block;
    font-family: var(--font-family-title);
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 15px;
    font-style: italic;
}

.input-group input, .input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-size: 16px;
    font-family: var(--font-family-default);
    color: var(--dark);
    transition: var(--default-transition);
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--secondary);
}

.input-group textarea {
    height: 60px;
    resize: none;
}

.contact-footer-info {
    display: flex;
    gap: 60px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.info-block strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary);
    margin-bottom: 15px;
}

.info-block a, .info-block span {
    display: block;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.8;
    text-decoration: none;
}

.site-btn.dark-btn {
    background: var(--dark);
    color: #ffffff;
    border: none;
    width: 100%;
    text-align: center;
}
.site-btn.dark-btn:hover {
    color: #ffffff;
}
.site-btn.dark-btn::before {
    background: var(--secondary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 100px 0 0;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 60px;
    padding: 0 40px 80px;
}

.footer-col h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 25px;
    letter-spacing: 0.15em;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col p a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--default-transition);
}

.footer-col p a:hover {
    color: var(--secondary);
}

.mt-15 {
    margin-top: 15px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--default-transition);
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-newsletter {
    display: flex;
    margin-top: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.footer-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: var(--default-transition);
}

.footer-newsletter button:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

/* Animations Classes */
.animate-up, .animate-fade-right, .animate-fade-left {
    opacity: 0;
    visibility: hidden;
}

/* Responsive */
@media (max-width: 1199px) {
    .hdr-nav ul { gap: 20px; }
    .hdr-smi ul { gap: 10px; }
    .about-wrap { gap: 40px; }
    .process-step { gap: 40px; }
    .contact-wrap { gap: 40px; }
}

@media (max-width: 991px) {
    .hdr-inner {
        display: flex;
        justify-content: space-between;
    }
    .hdr-nav, .hdr-smi {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .about-wrap, .contact-wrap {
        flex-direction: column;
    }
    .about-image { margin-top: 60px; min-height: auto; width: 100%; }
    .img-main { width: 100%; height: 500px; }
    .img-second { display: none; } /* Hide secondary image on small screens for cleaner look */
    .about-highlight { position: relative; top: -50px; left: 20px; max-width: calc(100% - 40px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-left: none; border-top: 4px solid var(--secondary); margin-bottom: -50px; }
    
    .features-grid { grid-template-columns: 1fr; gap: 60px; margin-top: 60px; }
    
    .services-header { flex-direction: column; align-items: flex-start; }
    
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 50px; }
    
    .testimonial-cards { grid-template-columns: 1fr; gap: 60px; margin-top: 60px; }
    
    .contact-split { flex-direction: column; }
    .contact-image { min-height: 400px; }
    .contact-content { padding: 80px 40px; }
    
    .cta-content h2 { font-size: 42px; }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-newsletter { justify-content: center; max-width: 300px; margin: 30px auto 0; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-title h1 { font-size: 50px; }
    .hero-section { padding-left: 20px; padding-right: 20px; }
    .scroll-indicator { left: 20px; }
    
    .about-section { padding: 80px 0; }
    .about-stats { flex-direction: column; gap: 20px; }
    
    .process-timeline { grid-template-columns: 1fr; gap: 40px; }
    
    .form-row { flex-direction: column; gap: 0; }
    
    .footer-nav ul { flex-direction: column; gap: 15px; }
}
