/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --color-primary: #D21B27;        /* Rich crimson red from design */
    --color-primary-hover: #b0141d;  /* Darker red for hover */
    --color-text-white: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.75);
    --color-text-dim: rgba(255, 255, 255, 0.6);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --header-height: 100px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-quick: all 0.2s ease;
}

/* Reset and Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: #0d0e12;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0d0e12;
}
::-webkit-scrollbar-thumb {
    background: #2a2b30;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Custom Cursor (Premium Interaction) */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.08s ease-out, border-color 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

/* Interactive States for Cursor */
.custom-cursor.hovered {
    width: 12px;
    height: 12px;
    background-color: var(--color-text-white);
}

.custom-cursor-follower.hovered {
    width: 48px;
    height: 48px;
    border-color: var(--color-primary);
    background-color: rgba(210, 27, 39, 0.08);
}

/* Hide cursor on touch devices */
@media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-follower {
        display: none !important;
    }
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    background: transparent;
}

/* Header style changes slightly when scrolled, ensuring premium feel */
.header.scrolled {
    position: fixed;
    height: 80px;
    background: #0d0e12 !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    width: 220px; /* Reserve space for absolute logo positioning */
    position: relative;
}

.logo-img {
    height: 150px; /* Adjusted to balance visual line-up */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    position: absolute;
    top: -55px; /* Shifted further up */
    left: -50px;
}

.header.scrolled .logo-img {
    height: 110px;
    top: -35px; /* Shifted further up when scrolled */
    left: -50px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--color-text-white);
    opacity: 0.9;
    position: relative;
    padding: 10px 0;
    transition: var(--transition-quick);
}

.nav-item:hover {
    opacity: 1;
}

/* Active Nav Item - "HOME" from design */
.nav-item.active {
    color: var(--color-primary);
    opacity: 1;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

/* Expanding Underline Hover Effect for Other Links */
.nav-item:not(.active)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-item:not(.active):hover::after {
    width: 100%;
}

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(210, 27, 39, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-hover);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 27, 39, 0.35);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Specific styling for navigation quote button */
.quote-btn {
    border-radius: 6px;
}

/* Hero outline button */
.btn-outline {
    background-color: transparent;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 13px 28px;
    border-radius: 6px;
    border: 1.5px solid var(--color-text-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-text-white);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-outline:hover {
    color: #0d0e12;
    transform: translateY(-2px);
}

.btn-outline:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* ==========================================================================
   HAMBURGER MENU (MOBILE)
   ========================================================================== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 101;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-white);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   MOBILE MENU DRAWER OVERLAY
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0e12;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-menu-overlay.open {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 44px;
    color: var(--color-text-white);
    line-height: 1;
    opacity: 0.8;
    transition: var(--transition-quick);
}

.close-btn:hover {
    opacity: 1;
    color: var(--color-primary);
}

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

.mobile-nav-item {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-white);
    transition: var(--transition-quick);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    color: var(--color-primary);
}

.mobile-quote-btn {
    margin-top: 15px;
    background-color: var(--color-primary);
    padding: 12px 36px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
}

.mobile-quote-btn:hover {
    color: var(--color-text-white);
    background-color: var(--color-primary-hover);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background Container */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.1s ease-out; /* Smooth transition for mouse movement */
}

/* Subtle dark gradient overlay as seen in the design to increase contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.55) 45%, 
        rgba(0, 0, 0, 0.25) 100%
    );
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 50px 0; /* Add padding-top to avoid overlay with header */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hero Content (Main Title, Subtitle, Buttons) */
.hero-content {
    max-width: 1000px;
    margin-top: auto;
    margin-bottom: auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.2vw, 76px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.5px;
    color: var(--color-text-white);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.title-line.highlighted {
    color: var(--color-text-white); /* Keep it white, but styled separately if needed */
}

.hero-subtitle {
    font-size: clamp(16px, 1.3vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-btn {
    padding: 16px 36px;
    font-size: 15px;
    border-radius: 6px;
}

/* ==========================================================================
   FEATURE BADGES (BOTTOM LEFT)
   ========================================================================== */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 45px;
    width: fit-content;
}

.badge-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* Badge Icon Container */
.badge-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.badge-svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-text-white);
    stroke-width: 1.5;
}

.badge-svg .checkmark {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

/* Trigger animation for checking shield checkmark */
.badge-card:hover .badge-svg .checkmark {
    stroke-dashoffset: 0;
}

/* Badge Text Details */
.badge-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.25;
    color: var(--color-text-white);
}

.badge-text span:first-child {
    font-weight: 700;
}

.badge-text span:last-child {
    font-weight: 400;
    opacity: 0.85;
}

/* Elegant Thin Divider */
.badge-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hover Interactive animation for badges */
.badge-card:hover .badge-icon-wrapper {
    transform: translateY(-5px) scale(1.05);
    color: var(--color-primary);
}

.badge-card:hover .badge-svg {
    stroke: var(--color-primary);
}

/* ==========================================================================
   RESPONSIVE LAYOUT RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 40px;
    }
    .hero-container {
        padding: 100px 40px 0;
    }
    .logo-img {
        left: -40px;
    }
    .header.scrolled .logo-img {
        left: -40px;
    }
}

@media (max-width: 1024px) {
    :root {
        --header-height: 80px;
    }
    
    .nav-menu {
        display: none; /* Hide desktop links */
    }
    
    .quote-btn {
        display: none; /* Hide desktop CTA */
    }
    
    .hamburger-btn {
        display: flex; /* Show mobile hamburger button */
    }
    
    .logo-link {
        display: flex;
        align-items: center;
        height: 100%;
        width: 160px;
        position: relative;
    }
    
    .logo-img {
        height: 160px;
        width: auto;
        object-fit: contain;
        position: absolute;
        top: -65px;
        left: 0;
    }
    
    .header.scrolled .logo-img {
        height: 120px;
        position: absolute;
        top: -45px;
        left: 0;
    }
    
    .hero-content {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
    }
    
    .hero-container {
        padding: 100px 24px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .badge-divider {
        display: none; /* Divider not needed when stacked vertically */
    }
    
    .badge-card {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        padding: 12px 18px;
        border-radius: 8px;
        width: 100%;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .badge-text {
        flex-direction: row;
        gap: 6px;
        font-size: 15px;
    }
    
    .badge-text span {
        display: inline-block;
    }
}

@media (max-height: 700px) {
    .hero-container {
        padding-top: 80px;
    }
    .hero-content {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .hero-subtitle {
        margin-bottom: 20px;
    }
    .hero-badges {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    position: relative;
    width: 100%;
    background-color: #07080a; /* Extremely dark premium background */
    background-image: linear-gradient(rgba(7, 8, 10, 0.95), rgba(7, 8, 10, 0.95)), url('brick_texture.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect for brick texture */
    padding: 140px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.8vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-line {
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    margin-bottom: 32px;
    border-radius: 2px;
}

.about-description {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.75;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 620px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 14px;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-btn:hover .arrow-icon {
    transform: translateX(6px);
}

/* 2x2 Highlights Grid with Center Cross Lines */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
}

.highlight-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 60px 40px;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

/* Border styles to form a perfect central cross */
.highlight-card:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
    transform: translateY(-4px);
}

.highlight-icon-wrapper {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.highlight-svg {
    width: 44px;
    height: 44px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.highlight-card:hover .highlight-svg {
    transform: scale(1.15) rotate(3deg);
}

.highlight-text h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 1.35;
    letter-spacing: -0.2px;
}

/* Responsiveness overrides for About Section */
@media (max-width: 1200px) {
    .about-container {
        gap: 60px;
        padding: 0 40px;
    }
    .highlight-card {
        padding: 40px 30px;
    }
}

@media (max-width: 1024px) {
    .about-section {
        padding: 100px 0;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 80px;
        max-width: 800px;
    }
    .highlight-card {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    .about-container {
        padding: 0 24px;
        gap: 50px;
    }
    .about-highlights {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .highlight-card {
        padding: 30px 20px;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    .highlight-card:last-child {
        border-bottom: none !important;
    }
    .highlight-icon-wrapper {
        width: auto;
        height: auto;
    }
    .highlight-svg {
        width: 36px;
        height: 36px;
    }
    .highlight-text h3 {
        font-size: 18px;
    }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    position: relative;
    width: 100%;
    background-color: #f7f8fa; /* Light premium background */
    padding: 140px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.services-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}

.services-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.services-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: #0d0e12;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.services-line {
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
    margin-top: 4px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.service-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(210, 27, 39, 0.3);
    border: 3px solid #ffffff;
    z-index: 2;
    margin: -30px auto 0; /* Centered, pulled up by 30px */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-icon-circle {
    transform: scale(1.1);
}

.service-icon-circle:hover {
    background-color: var(--color-primary-hover);
}

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

.service-info {
    padding: 50px 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #0d0e12;
    margin-bottom: 12px;
    line-height: 1.35;
    letter-spacing: -0.2px;
    min-height: 48px; /* Ensure alignment when titles wrap differently */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-info p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    color: #55585d;
    margin-bottom: 24px;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto; /* Push to bottom of the card content */
    transition: color 0.3s ease;
}

.link-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-link:hover .link-arrow {
    transform: translateX(4px);
}

/* Responsiveness overrides for Services Section */
@media (max-width: 1200px) {
    .services-container {
        padding: 0 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    .services-container {
        padding: 0 24px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-header {
        margin-bottom: 50px;
    }
    .service-info {
        padding: 40px 20px 30px;
    }
    .service-info h3 {
        min-height: auto;
    }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    position: relative;
    width: 100%;
    background-color: #f7f8fa; /* Light premium background matching design */
    padding: 70px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.stat-icon-wrapper {
    color: #0d0e12;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-svg {
    width: 48px;
    height: 48px;
    stroke: #0d0e12;
    stroke-width: 1.5;
}

.stat-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: #0d0e12;
    line-height: 1.1;
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

.stat-text-val {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 800;
    color: #0d0e12;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: clamp(11px, 0.9vw, 13px);
    font-weight: 600;
    color: #606266;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 20px;
}

/* Responsiveness overrides for Stats Section */
@media (max-width: 1024px) {
    .stats-container {
        padding: 0 40px;
        flex-wrap: wrap;
        gap: 40px 20px;
    }
    .stat-card {
        flex: 0 0 calc(50% - 20px);
    }
    .stat-divider {
        display: none; /* Hide dividers in 2x2 layout */
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 0;
    }
    .stats-container {
        padding: 0 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 36px;
    }
    .stat-card {
        flex: 1;
        justify-content: flex-start;
        padding-left: 20px;
    }
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
    position: relative;
    width: 100%;
    background-color: #0d0e12; /* Dark premium background matching body */
    padding: 140px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}

.gallery-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.gallery-line {
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 50px;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5; /* Make cards slightly taller than square for a premium architectural layout */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(210, 27, 39, 0.3);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-footer {
    position: relative;
    z-index: 10;
    margin-top: -25px; /* Shift the CTA up slightly to overlay over the bottom of the grid */
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 15px;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(210, 27, 39, 0.3);
}

/* Responsiveness overrides for Gallery Section */
@media (max-width: 1200px) {
    .gallery-container {
        padding: 0 40px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 30px;
    }
    .gallery-footer {
        margin-top: 20px; /* Reset overlap on smaller grids */
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }
    .gallery-container {
        padding: 0 24px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-card {
        aspect-ratio: 4/3; /* landscape aspect ratio is better on vertical list viewports */
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    position: relative;
    width: 100%;
    background-color: #f7f8fa; /* Light premium background matching design */
    padding: 140px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}

.testimonials-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: #0d0e12;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.testimonials-line {
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.quote-icon-wrapper {
    color: var(--color-primary);
    margin-bottom: 24px;
    opacity: 0.9;
}

.quote-svg {
    width: 36px;
    height: 36px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #444850;
    margin-bottom: 28px;
    flex-grow: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #ffb800; /* Star yellow */
    margin-bottom: 28px;
}

.star-svg {
    width: 18px;
    height: 18px;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #0d0e12;
    margin-bottom: 2px;
}

.client-info span {
    font-family: var(--font-body);
    font-size: 12px;
    color: #7d828a;
}

/* Slider Arrow Buttons */
.slider-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #7d828a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 10;
    cursor: pointer;
    transition: var(--transition-quick);
}

.slider-arrow:hover {
    color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.prev-arrow {
    left: -70px;
}

.next-arrow {
    right: -70px;
}

/* Dots Indicator */
.slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d4db;
    cursor: pointer;
    transition: var(--transition-quick);
}

.slider-dots .dot.active {
    background-color: var(--color-primary);
    width: 20px;
    border-radius: 4px;
}

/* Responsiveness overrides for Testimonials Section */
@media (max-width: 1400px) {
    .prev-arrow {
        left: -20px;
    }
    .next-arrow {
        right: -20px;
    }
}

@media (max-width: 1024px) {
    .testimonials-container {
        padding: 0 40px;
    }
    .testimonials-slider-wrapper {
        overflow: hidden; /* Hide overflow to allow sliding container */
        padding: 10px 0;
    }
    .testimonials-slider {
        display: flex; /* Flex instead of grid to allow slide movement */
        width: max-content;
        gap: 30px;
    }
    .testimonial-card {
        width: calc((1024px - 140px) / 2); /* 2 cards visible width roughly */
        flex-shrink: 0;
    }
    .prev-arrow {
        left: 0px;
    }
    .next-arrow {
        right: 0px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    .testimonials-container {
        padding: 0 24px;
    }
    .testimonial-card {
        width: calc(100vw - 48px); /* 1 card visible on mobile screens */
        padding: 40px 24px;
    }
    .slider-arrow {
        display: none; /* Hide arrows on mobile, rely on dots/swipe */
    }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    position: relative;
    width: 100%;
    background-color: #07080a; /* Dark black background */
    background-image: linear-gradient(rgba(7, 8, 10, 0.96), rgba(7, 8, 10, 0.96)), url('brick_texture.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 140px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: flex-start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.8vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 540px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(210, 27, 39, 0.1);
    border: 1px solid rgba(210, 27, 39, 0.2);
    border-radius: 8px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-icon-box {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    transform: translateY(-2px);
}

.contact-icon-box svg {
    width: 22px;
    height: 22px;
}

.contact-detail-text h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-white);
}

.contact-detail-text p a {
    transition: color 0.3s ease;
}

.contact-detail-text p a:hover {
    color: var(--color-primary);
}

/* Glassmorphic Contact Form Panel */
.contact-form-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

.form-group-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-white);
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: var(--color-text-dim);
    font-size: 14px;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

/* Styled option styling for select input */
.form-group select option {
    background-color: #0d0e12;
    color: var(--color-text-white);
}

.form-submit-btn {
    align-self: flex-start;
    padding: 18px 40px;
    font-size: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Responsiveness overrides for Contact Section */
@media (max-width: 1200px) {
    .contact-container {
        gap: 60px;
        padding: 0 40px;
    }
    .contact-form-panel {
        padding: 40px;
    }
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 80px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    .contact-container {
        padding: 0 24px;
        gap: 50px;
    }
    .contact-form-panel {
        padding: 30px 20px;
    }
    .form-group-row {
        flex-direction: column;
        gap: 28px;
    }
    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    width: 100%;
    background-color: #07080a; /* Matches the dark background from design */
    background-image: linear-gradient(rgba(7, 8, 10, 0.96), rgba(7, 8, 10, 0.96)), url('brick_texture.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 1.1fr 0.9fr;
    gap: 70px;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-about {
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    /* Visual baseline alignment: top of the logo aligns with column titles */
    margin-top: -45px; 
    margin-bottom: -55px; /* Offset whitespace at the bottom of the logo image */
}

.footer-logo-img {
    height: 144px; /* 3x bigger */
    width: auto;
    object-fit: contain;
}

.footer-about-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-muted);
    max-width: 290px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #15161c;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
}

.social-circle:hover {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    transform: translateY(-3px);
}

.social-circle svg {
    width: 16px;
    height: 16px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-text-white);
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Links Lists */
.footer-links-list,
.footer-services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 200px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-quick);
    text-decoration: none;
}

.footer-links-list li a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-links-list li a .arrow {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    transition: var(--transition-quick);
}

.footer-links-list li a:hover .arrow {
    color: var(--color-primary);
}

.footer-services-list li {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-quick);
}

.footer-services-list li:hover {
    color: var(--color-primary);
    cursor: default;
}

/* Contact Column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-contact-icon {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 1px;
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
}

.footer-contact-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.footer-contact-text a {
    transition: var(--transition-quick);
    color: inherit;
    text-decoration: none;
}

.footer-contact-text a:hover {
    color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: 80px;
}

.footer-bottom-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-dim);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 40px;
        gap: 50px;
    }
    .footer-bottom-container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 70px 0 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }
    .footer-bottom {
        margin-top: 50px;
    }
    .footer-bottom-container {
        padding: 0 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}



