/* ===================================
   GLOBAL STYLES & RESET
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #ffffff;
    --color-white: #000000;
    --color-dark-gray: #f5f5f5;
    --color-light-gray: #eeeeee;
    --color-border: rgba(0, 0, 0, 0.1);
    --color-text-secondary: #868686;
    --color-accent: rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; line-height: 1.3; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; line-height: 1.4; }
h4 { font-size: 1.25rem; line-height: 1.4; }

p {
    /* margin-bottom: 1.5rem; */
    color: var(--color-text-secondary);
    line-height: 24px !important;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===================================
   LAYOUT & SPACING
   =================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.max-width-2xl { max-width: 42rem; margin: 0 auto; }
.max-width-4xl { max-width: 56rem; margin: 0 auto; }

.section {
    padding: 5rem 0;
    border-top: 1px solid var(--color-border);
}

.section:first-of-type {
    border-top: none;
}

.text-center { text-align: center; }
.text-center h2 { margin-left: auto; margin-right: auto; }

.margin-top-20 { margin-top: 2rem; }
.margin-top-40 { margin-top: 4rem; }
.margin-top-60 { margin-top: 6rem; }
.margin-bottom-40 { margin-bottom: 4rem; }
.margin-bottom-60 { margin-bottom: 6rem; }

.padding-top-40 { padding-top: 4rem; }
.padding-bottom-40 { padding-bottom: 4rem; }

.border-top { border-top: 1px solid var(--color-border); }
.border-bottom { border-bottom: 1px solid var(--color-border); }

/* ===================================
   GRID SYSTEM
   =================================== */

.grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.gap-20 { gap: 2rem; }
.gap-30 { gap: 3rem; }

.items-center { align-items: center; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    #services-next{
        margin-right: 2px;
    }
    #services-next{
        margin-left: -2px;
    }
}

@media (max-width: 480px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

/* ===================================
   TESTIMONIAL MARQUEE
   =================================== */

.testimonial-marquee {
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonial-marquee.is-dragging {
    cursor: grabbing;
}

.testimonial-marquee-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    will-change: transform;
    transition: transform 0.25s ease-out;
}

.testimonial-marquee-track.is-dragging {
    transition: none;
}

.testimonial-card {
    flex: 0 0 360px;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
    .testimonial-card {
        flex-basis: min(82vw, 320px);
    }
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
        background-color: rgb(0 0 0 / 12%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    height: 30px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .nav-logo-img { height: 32px; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    color: #ffffff;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 1px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.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);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 1.5rem 2rem;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.35s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
    }

    .nav-menu.active {
        max-height: 100vh;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link::after {
        display: none;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-small {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-small .hero-background {
    position: absolute;
    inset: 0;
    background-image: url('img/strata-banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-small .hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.211), rgba(0,0,0,0.45));
    z-index: 1;
}

.hero-small .hero-content { z-index: 2; color: var(--color-white); }

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
}

.hero-content-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 2;
}

.hero-content-item.active {
    opacity: 1;
    position: relative;
    transform: none;
    top: auto;
    left: auto;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 800;
}
.hero-title h1 {
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-secondary);
    line-height: 20px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Navigation Controls */
.hero-nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.hero-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: white;
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background-color: white;
    width: 32px;
    border-radius: 6px;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-primary:hover {
    background-color: #868686;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgb(0, 0, 0);
    border-color: rgb(255, 255, 255);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn:active {
    transform: scale(0.95);
}

/* ===================================
   SECTION COMPONENTS
   =================================== */



.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* Cards */
.card {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.card:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.card-large {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card-large:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.card-large p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Story Section */
.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.about{
        font-size: 23px;
    line-height: 28px !important;
    padding-top: 10px;
}
/* Value Cards */
.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-white), rgba(255, 255, 255, 0.3));
}

.value-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: #868686;
    line-height: 1.7;
}
.blog-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:all .3s ease;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-content{
    padding:24px;
}

.blog-category{
    display:inline-block;
    padding:6px 14px;
    background:#f3f4f6;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
}

.blog-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
    font-size:14px;
}

.featured-blog{
    background:#f8f9fa;
    border-radius:20px;
    padding:40px;
}

.blog-cta .card-large{
    padding:60px 40px;
    border-radius:20px;
}
/* Services & About images */
.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: block;
}

.about-image {
    width: 100%;
    max-width: 420px;
    border-radius: 0.5rem;
    margin: 0 0 1rem 0;
    display: block;
}

@media (min-width: 769px) {
    .about-text {
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }
    .about-image { flex: 0 0 40%; }
    .about-text p { flex: 1; margin: 0; }
}

@media (max-width: 768px) {
    .about-image { max-width: 100%; margin: 0 0 1rem 0; }
}

/* ===================================
   STRATA SERVICE TYPE CARDS (Smoother layout for services grid)
   =================================== */
.strata-services-types {
    margin: 4.5rem 0 2.5rem;
}

.strata-services-types-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 2.25rem;
}

.service-type-card {
    padding: 2.25rem 2rem;
    min-height: 100%;
}

.service-type-card .feature-number {
    margin-bottom: 1.25rem;
    width: 62px;
    height: 62px;
    font-size: 1.25rem;
}

.service-type-card h3 {
    margin-bottom: 0.9rem;
}

.service-type-card .btn {
    margin-top: 1.1rem;
}

@media (max-width: 768px) {
    .strata-services-types {
        margin: 2.5rem 0 1.5rem;
    }

    .strata-services-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-type-card {
        padding: 1.75rem 1.25rem;
    }
}

.card-large:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Service Cards */
.service-card {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 16px;
    transition: var(--transition);
}

.service-card:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.feature-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

/* Value Cards */
.value-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.value-card h4 {
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

/* ===================================
   STATS SECTION
   =================================== */

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat p {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-text {
    display: flex;
    flex-direction: column;
}

.about-text p {
    font-size: 16px;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.space-y-40 {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 1.75rem 0;
}

.feature-list li {
    padding: 4px 0;
    font-size: 1.02rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.5;
}

.placeholder-box {
    height: 320px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #868686;
    transition: var(--transition);
}

.placeholder-box:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.05);
}

/* Service detail images */
.service-detail-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .service-detail-img {
        height: 220px;
    }
}

/* ===================================
   BLOG SECTION
   =================================== */

.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.875rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    z-index: 1;
}

.blog-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.12) 100%);
    padding: 0px;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    margin-bottom: 1.25rem;
    width: fit-content;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.18) 100%);
    border-color: rgba(255, 255, 255, 0.35);
}

.blog-card h3 {
    font-size: 22px;
    margin-bottom: 1.2rem;
    flex-grow: 1;
    color: var(--color-white);
    font-weight: 700;
    line-height: 26px;
    transition: color 0.3s ease;
}



.blog-card p {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.blog-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

.blog-meta {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    transition: all 0.35s ease;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    width: fit-content;
}

.blog-read-more:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
    transform: translateX(4px);
}

.blog-read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 2rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section,
.contact-page {
    padding: 4rem 0;
}

.contact-page .section-header {
    max-width: 780px;
    margin: 0 auto 3rem;
}

.contact-page .section-header h2 {
    font-size: clamp(2.5rem, 3vw, 3.25rem);
    margin-bottom: 1rem;
}

.contact-page .section-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    max-width: 760px;
    margin: 0 auto;
}

.contact-grid {
    align-items: start;
}

.contact-panel {
    display: grid;
    gap: 1.5rem;
}

.contact-panel-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
}

.contact-tag {
    display: inline-flex;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.contact-panel-card h3 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.contact-panel-card p {
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
}

.contact-details {
    display: grid;
    gap: 1rem;
}

.contact-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}

.contact-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.contact-card p,
.contact-card a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.contact-card a:hover {
    color: #ffffff;
}

.contact-meta {
    display: grid;
    gap: 1rem;
}

.meta-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.meta-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.meta-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.contact-form-wrapper {
    display: grid;
    gap: 1.5rem;
}

.contact-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 18px 50px rgba(0,0,0,0.3);
}

.contact-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.photo-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.55);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.contact-form {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1rem;
    padding: 2rem;
    display: grid;
    gap: 1rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.contact-form label {
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.15);
    color: rgba(255,255,255,0.95);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.65);
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.input-grid > div {
    display: grid;
    gap: 0.5rem;
}

.contact-form textarea {
    min-height: 180px;
}

.contact-form .btn {
    width: fit-content;
    padding: 1rem 1.5rem;
    border-radius: 0.85rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .contact-grid,
    .input-grid {
        grid-template-columns: 1fr;
    }

    .contact-photo {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 2.5rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-panel-card,
    .contact-form,
    .contact-card,
    .meta-card {
        padding: 1.5rem;
    }
}

/* Toast confirmation */
.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: rgba(0,0,0,0.8);
    color: var(--color-white);
    padding: 0.85rem 1rem;
    border-radius: 0.6rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-photo { height: 160px; }
    .grid-2 { grid-template-columns: 1fr; }
}

.contact-form button {
    width: fit-content;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--color-black);
    border-top: 1px solid var(--color-border);
    padding: 3rem 0;
}

.footer .container {
    padding-bottom: 2rem;
}

.footer-col {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-col p {
    font-size: 0.9rem;
    color: #868686;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 2px 0px;
    font-size: 0.9rem;
    color: #868686;
    transition: var(--transition);
}

.footer-col ul li:hover,
.footer-col a:hover {
    color: var(--color-white);
}

.footer-col a {
    transition: var(--transition);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #868686;
    transition: var(--transition);
    font-weight: 600;
}

.social-links a:hover {
    color: var(--color-white);
    border-color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.fade-in-up:nth-child(1) { animation-delay: 0s; }
.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }
.fade-in-up:nth-child(5) { animation-delay: 0.4s; }
.fade-in-up:nth-child(6) { animation-delay: 0.5s; }

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 3rem 0;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail .grid {
        grid-template-columns: 1fr;
    }

    .placeholder-box {
        height: 250px;
    }

    .footer .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 44px;
        line-height: 46px;
    }

    .hero-subtitle {
       font-size: 16px;
        line-height: 18px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }

    .grid-4, .grid-3 {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer .grid {
        grid-template-columns: 1fr;
    }
}
.feature-icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f4f4f4;
    font-size:28px;
    color:#868686; /* Gold accent */
    transition:all 0.3s ease;
    margin-bottom:18px;
}

.feature-card:hover .feature-icon{
    transform:translateY(-5px);
    background:#868686;
    color:#fff;
}


.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.hero-gradient {
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}
.text-stroke {
    -webkit-text-stroke: 1px black;
    color: transparent;
}
/* Slider Styles */
#hero-slider {
    position: relative;
    min-height: 100vh;
}

#hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
}

#hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
}

#hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
    animation: zoomEffect 10s linear infinite;
}

#hero-slider .overlay {
    position: absolute;
    inset: 0;
    background: rgb(9 9 9 / 59%);
}
/* 
#hero-slider .content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
    padding: 0 24px;
    text-align: left;
    color: white;
    padding-left: 82px;
    width: min(100%, 760px);
} */

#hero-slider .content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 24px;
    text-align: center;
    color: white;
    width: 100%;
}
#hero-slider .content h1 {
    font-size: 65px;
    line-height: 62px;
    font-weight: 800;
}

#hero-slider .content p {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    max-width: 100%;
    margin-top: 24px;
}

.text-headline-h4-1 {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 700;

}

#hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 180ms ease, transform 120ms ease;
    z-index: 30;
}

#hero-slider .slider-arrow:hover {
    background: rgba(255,255,255,.25);
    transform: translateY(-50%) scale(1.03);
}

#hero-slider .slider-arrow.prev { left: 16px; }
#hero-slider .slider-arrow.next { right: 16px; }

#hero-slider .slider-arrow:focus {
    outline: 2px solid rgba(255,255,255,0.9);
    outline-offset: 4px;
}

#hero-slider .slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 30;
}

#hero-slider .dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

#hero-slider .dot.active {
    width: 36px;
    background: white;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.12); }
}

@media (max-width: 1024px) {
    #hero-slider .content {
        left: 50%;
        transform: translate(-50%, -50%);
        padding-left: 24px;
        text-align: center;
        align-items: center;
        width: min(100%, 90%);
    }

    #hero-slider .content h1 {
        font-size: clamp(2.25rem, 6vw, 3.75rem);
    }

    #hero-slider .slider-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    #hero-slider {
        min-height: 75vh;
    }

    #hero-slider .content {
        top: 52%;
        padding: 0 16px;
    }

    #hero-slider .content h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    #hero-slider .content p {
        font-size: 1rem;
    }

    #hero-slider .content .mt-10 {
        flex-direction: column;
        gap: 0.75rem;
        justify-content: center;
    }

    #hero-slider .content .mt-10 a {
        width: 100%;
    }

    .max-w-sm {
        max-width: 100%;
    }

    .px-container-pad {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
.p-card-pad-lg {
    padding: 40px;
    background-color: #8686861c;
    border-color: rgba(0, 0, 0, 0.425);
}
.text-headline-h3 {
    font-size: 18px !important;
}
.banner-light span{
    font-weight: 400;
}
@media (max-width: 640px) {
    #hero-slider .content h1 {
        font-size: 38px;
        line-height: 40px;
    }
}
@media (max-width: 640px) {
    #hero-slider .content p {
        font-size: 1rem;
        line-height: 18px;
    }
}

@media (max-width: 640px) {
    #hero-slider {
        min-height: 100vh;
    }
    .mb-margin-xl {
    margin-bottom: 40px !important;
}
.fix{
    display: flex !important;
    flex-direction: column !important;
    gap: 40px!important;

}

}
.max-w-container-mid {
    max-width: auto;
}


.feature-number{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.06);
    font-size:20px;
    font-weight:700;
    margin-bottom:24px;
    transition:all .3s ease;
}

.card-large:hover .feature-number{
    background:#000;
    color:#fff;
    transform:translateY(-4px);
}

.card-large{
    height:100%;
    display:flex;
    flex-direction:column;
}

.card-large .btn{
    margin-top:auto;
}

.contact-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(0,0,0,0.05);
    border:1px solid rgba(0,0,0,0.08);
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.feature-list{
    margin:24px 0;
}

.feature-list li{
    list-style:none;
    padding:6px 0;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.feature-list li:last-child{
    border-bottom:none;
}


.feature-card{
    padding:30px;
    transition:all .35s ease;
}

.feature-icon{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#000;
    color:#fff;
    transition:all .35s ease;
}

.feature-icon .material-symbols-outlined{
    font-size:30px;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#000;
}

.feature-card:hover .feature-icon{
    background:#fff;
    color:#000;
    border:1px solid #000;
}
/* ========================================
   Strata Services PAGE
   ======================================== */
.strata-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.strata-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(160, 160, 160, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.strata-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.strata-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

@media (min-width: 768px) {
  .strata-hero-title {
    font-size: 4.5rem;
  }
}

.strata-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

/* Overview Section */
.strata-overview {
  padding: 5rem 0 8rem 0;
}

.overview-header {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

.overview-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.strata-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .strata-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .strata-services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.strata-service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: fadeInUp 0.6s ease backwards;
}

.strata-service-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.strata-card-header {
  margin-bottom: 1.5rem;
}

.strata-card-number {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(160, 160, 160, 0.5);
  margin-bottom: 0.5rem;
}

.strata-service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.strata-card-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.strata-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.strata-features-list li {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  font-size: 0.9375rem;
}

/* Gallery Section */
.strata-gallery {
  padding: 5rem 0 8rem 0;
}

.gallery-header {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.gallery-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ===================================
   MANAGEMENT PROCESS SECTION
   =================================== */

.process-section {
    padding: 5rem 0;
}

.process-header {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 3.5rem;
}

.process-header h2 {
    margin-bottom: 1rem;
    color: #1a1c1c;
}

.process-header p {
    color: #4c4546;
    font-size: 1.0625rem;
}

.process-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f9f9 0%, #eeeeee 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    background: linear-gradient(135deg, #f3f3f4 0%, #e8e8e8 100%);
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #5e5e5e 0%, #3a3a3a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.process-card:nth-child(2) .process-step-number {
    background: linear-gradient(135deg, #6b6b6b 0%, #484848 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.process-card:nth-child(3) .process-step-number {
    background: linear-gradient(135deg, #777777 0%, #555555 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.process-card:nth-child(4) .process-step-number {
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.process-card:hover .process-step-number {
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1c1c;
}

.process-card p {
    color: #4c4546;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.process-image-container {
    width: 100%;
    height: 150px;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-top: auto;
    margin-bottom: 0;
    background: linear-gradient(135deg, #e2e2e2 0%, #d4d4d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-card:hover .process-image {
    transform: scale(1.05);
}

.process-arrow {
    display: none;
    position: absolute;
    bottom: 50%;
    right: -45px;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.2);
    transform: translateY(50%);
}

@media (min-width: 1024px) {
    .process-card {
        min-height: 320px;
    }
    
    .process-card:not(:last-child) .process-arrow {
        display: block;
    }
}

@media (max-width: 1023px) {
    .process-grid {
        gap: 2rem;
    }
    
    .process-card {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .process-section {
        padding: 3rem 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-card {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .process-image-container {
        height: 120px;
    }
}

.gallery-item {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
}

.gallery-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.gallery-item.large {
  grid-column: 1;
  grid-row: 1 / 3;
}

@media (max-width: 768px) {
  .gallery-item.large {
    grid-column: 1;
    grid-row: auto;
  }
}

.gallery-image {
  height: 16rem;
  overflow: hidden;
}

.gallery-item.large .gallery-image {
  height: 20rem;
}

@media (min-width: 768px) {
  .gallery-item.large .gallery-image {
    height: 32rem;
  }
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 2rem;
  font-size: 1rem;
  font-weight: 500;
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-info h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Why Choose Section */
.strata-why-choose {
  padding: 5rem 0 8rem 0;
}

.why-header {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.why-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
  animation: fadeInUp 0.6s ease backwards;
}

.why-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Benefits Section */
.strata-benefits {
  padding: 5rem 0 8rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
}

.benefit-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Process Section */
.strata-process {
  padding: 5rem 0 8rem 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .process-steps {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
}

.process-step {
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  flex: 1;
  max-width: 16rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
}

.process-step:hover {
}

.step-number {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9375rem;
}

.process-arrow {
  font-size: 1.5rem;
  display: none;
}

@media (min-width: 1024px) {
  .process-arrow {
    display: block;
  }
}

/* Stats Section */
.strata-stats {
  padding: 5rem 0 8rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.stat-box {
  border-radius: 0.5rem;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-box p {
  font-size: 0.9375rem;
}

/* CTA Section */
.strata-cta {
  padding: 5rem 0 8rem 0;
}

.cta-box {
  border-radius: 0.75rem;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .strata-hero-title {
    font-size: 2.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .cta-box {
    padding: 2rem;
  }

  .cta-box h2 {
    font-size: 1.75rem;
  }
}

/* whatsapp */


.whatsapp-btn{
    animation: whatsappPulse 2s infinite;
    transition: all .3s ease;
}

.whatsapp-btn:hover{
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37,211,102,.4);
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}
