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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a.btn.btn-primary {
    height: 46px;
    font-weight: 600;
}

body {
    font-family: var(--font-primary);
    font-size: var(--body-size);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: white;
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

h1 {
    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
}

h2 {
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
}

h3 {
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
}

h4 {
    font-size: var(--h4-size);
    font-weight: var(--h4-weight);
}

h5 {
    font-size: var(--h5-size);
    font-weight: var(--h5-weight);
}

h6 {
    font-size: var(--h6-size);
    font-weight: var(--h6-weight);
}

/* Paragraphs */
p {
    margin-bottom: var(--spacing-md);
}

p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

/* Lists */
ul, ol {
    margin-left: var(--spacing-md);
}

li {
    margin-bottom: var(--spacing-xs);
}

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

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Forms */
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
}

textarea {
    resize: vertical;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Code */
code, pre {
    font-family: 'Courier New', monospace;
    background-color: var(--border-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.9em;
}

/* HR */
hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: var(--spacing-lg) 0;
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--border-light);
}

::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-gray);
}
:root {
    /* Colors */
    --primary-color: #f57b06;
    --primary-dark: #e56a00;
    --secondary-color: #000000;
    --light-bg: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #E8E8E8;
    --border-light: #F5F5F5;

    /* Background */
    --hero-bg: linear-gradient(135deg, #E8D5F2 0%, #F0DFF5 50%, #FFF9E6 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Font Sizes */
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.75rem;
    --h4-size: 1.5rem;
    --body-size: 1rem;
    --small-size: 0.875rem;

    /* Font Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extra-bold: 800;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2rem;
    --spacing-3xl: 3rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-Index */
    --z-dropdown: 100;
    --z-mobile-menu: 1000;
    --z-modal: 1001;

    /* Button Styles - Normal */
    --btn-normal-bg: #f57b06;
    --btn-normal-color: #ffffff;
    --btn-normal-hover-bg: #ffffff;
    --btn-normal-hover-color: #f57b06;
    --btn-normal-padding: 1.1rem 2rem;
    --btn-normal-font-size: 1rem;
    --btn-normal-font-weight: 700;
    --btn-normal-border-radius: 10px;

    /* Button Styles - Light */
    --btn-light-bg: #ffffff;
    --btn-light-color: #f57b06;
    --btn-light-hover-bg: #f57b06;
    --btn-light-hover-color: #ffffff;
    --btn-light-padding: 1.1rem 2rem;
    --btn-light-font-size: 1rem;
    --btn-light-font-weight: 700;
    --btn-light-border-radius: 10px;
    --btn-light-border: 2px solid #f57b06;

    /* Heading Sizes */
    --h1-size: 3.5rem;
    --h1-weight: 800;
    --h2-size: 2.5rem;
    --h2-weight: 700;
    --h3-size: 1.75rem;
    --h3-weight: 700;
    --h4-size: 1.5rem;
    --h4-weight: 700;
    --h5-size: 1.25rem;
    --h5-weight: 600;
    --h6-size: 1rem;
    --h6-weight: 600;
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
    :root {
        --light-bg: #1A1A1A;
        --text-dark: #FFFFFF;
        --text-gray: #CCCCCC;
        --text-light: #999999;
        --border-color: #333333;
        --border-light: #2A2A2A;
    }
}
/* Announcement Banner */
.announcement-banner {
    background-color: #1a1f3a;
    height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 2rem;
    font-weight: var(--fw-bold);
}

.logo-image {
    height: 45px;
    width: auto;
}

.logo-build {
    color: #000000;
}

.logo-go {
    color: var(--primary-color);
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.menu-toggle {
    display: none;
    position: relative;
}

.nav-link {
    font-size: 16px;
    font-weight: var(--fw-medium);
    color: #333333;
    text-decoration: none;
    transition: color var(--transition-base);
    padding: var(--spacing-xs) 0;
    border: none;
    background: none;
    cursor: pointer;
    display: inline-block;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Services Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform var(--transition-base);
}

.nav-dropdown.active .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    min-width: 220px;
    padding: var(--spacing-sm) 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: var(--fw-medium);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
    padding-left: 20px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-shrink: 0;
    margin-left: auto;
}

/* Buttons */
.btn {
    padding: var(--btn-normal-padding);
    border-radius: var(--btn-normal-border-radius);
    font-weight: var(--btn-normal-font-weight);
    font-size: var(--btn-normal-font-size);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid transparent;
}

/* Normal Button (Default) */
.btn-primary,
.btn,
.btn-normal {
    background-color: var(--btn-normal-bg);
    color: var(--btn-normal-color);
    border: 2px solid var(--btn-normal-bg);
}

.header-right .btn.btn-primary {
    width: auto;
}

.btn-primary:hover,
.btn:hover,
.btn-normal:hover {
    background-color: var(--btn-normal-hover-bg);
    color: var(--btn-normal-hover-color);
    border: 2px solid var(--btn-normal-bg);
    box-shadow: 0 4px 12px rgba(245, 123, 6, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    color: white;
}

.btn-primary:active,
.btn:active,
.btn-normal:active {
    transform: translateY(-2px);
}

/* Light Button */
.btn-secondary,
.btn-light {
    background-color: var(--btn-light-bg);
    color: var(--btn-light-color);
    border: var(--btn-light-border);
}

.btn-secondary:hover,
.btn-light:hover {
    background-color: var(--btn-light-hover-bg);
    color: var(--btn-light-hover-color);
    border: 2px solid var(--btn-light-hover-bg);
    box-shadow: 0 4px 12px rgba(245, 123, 6, 0.2);
}

.btn-secondary:active,
.btn-light:active {
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Utility Classes */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(101deg, #061b14 0%, #061b14 30%, rgb(6 27 20 / 0%) 80%), url(../assets/images/buildgo-banner.png) center / cover no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-background {
    bottom: 0;
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 0 var(--spacing-lg);
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    color: #ffffff;
    z-index: 2;
}

.hero-label {
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-title {
    font-size: 60px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    width: 70%;
    margin-top: -1rem;
    font-weight: 600;
}

.hero-title .highlight {
    color: #f57b06;
    display: inline;
}

.hero-description {
    font-size: 1.3rem;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 500px;
    margin: 0;
}

.subtitle-banner {
    display: inline-block;
    background-color: var(--text-dark);
    color: white;
    padding: var(--spacing-xs) var(--spacing-lg);
    margin-top: var(--spacing-md);
    width: fit-content;
    font-size: 2rem;
    font-weight: var(--fw-bold);
    letter-spacing: -1px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: var(--fw-medium);
    margin-top: var(--spacing-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.stat-separator {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Form Container */
.hero-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    min-width: 350px;
}

.form-card {
    background-color: #FFFFFF !important;
    border-radius: 10px;
    padding: 30px;
    min-width: 100%;
}

.form-card button {
    padding: 14px 18px;
    font-size: 18px;
}

.form-title {
    font-size: var(--h4-size);
    font-weight: var(--fw-bold);
    color: #000000;
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

/* Form Styles */
.hero-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-input {
    padding: 17px 20px;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    font-size: 1.2rem;
    font-family: var(--font-secondary);
    color: #333333;
    background-color: #FFFFFF;
    transition: all var(--transition-base);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input:disabled {
    background-color: var(--border-light);
    cursor: not-allowed;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    height: 58px;
    gap: var(--spacing-xs);
    padding: 17px 20px;
    background-color: #FFFFFF;
    transition: all var(--transition-base);
}

.phone-input-wrapper:focus-within {
}

.country-flag {
    display: none;
}

.country-code {
    font-size: 1.1rem;
    color: #666666;
    font-weight: var(--fw-medium);
    min-width: 30px;
    border-right: 1px solid black;
    padding-right: 10px;
}

.phone-input {
    flex: 1;
    padding: 0px;
    font-size: 1.2rem;
    background: transparent;
    border: 0px;
}

.phone-input-wrapper input#userPhone {
    border: 0;
    outline: none;
}

.phone-input::placeholder {
    color: var(--text-light);
}

/* Select Dropdown */
.location-select {
    width: 100%;
    height: 58px;
    padding: 8px 20px;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    font-size: 1.2rem;
    background-color: #FFFFFF;
    color: #333333;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' 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 var(--spacing-lg) center;
    background-size: 20px;
    padding-right: 40px;
    transition: all var(--transition-base);
}

.location-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.location-select option {
    padding: var(--spacing-md);
    background-color: white;
    color: var(--text-dark);
}

/* Full Width Button */
.btn-full {
    width: 100%;
    margin-top: 0px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-btn {
    padding: 12px 28px;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: var(--fw-semibold);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}
.hero-video-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: var(--fw-medium);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-video-btn:hover {
    color: var(--primary-color);
}

.video-play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-video-btn:hover .video-play-icon {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Hero Image Container */
.hero-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Form Disclaimer */
.form-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
    margin: 0px;
}

.link-text {
    color: var(--primary-color);
    font-weight: var(--fw-semibold);
    text-decoration: none;
}

.link-text:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.form-card {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .hero-container {
        padding: var(--spacing-lg) 0;
        display: grid;
        gap: 60px;
    }
}
/* Services Section */
.services-section {
    padding: 6rem 0px;
    background-color: #ffffff;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Services Header Wrapper */
.services-header-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Services Header */
.services-header {
    max-width: 100%;
}

/* Services Header Image */
.services-header-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-header-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.services-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.8rem 0;
    color: #000000;
}

.services-title .highlight-green {
    color: #1b6b40;
}

.services-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Service Card Base */
.service-card {
    border-radius: 16px;
    padding: 2.5rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Light Cards */
.service-card-light {
    background-color: #f9f9f9;
    border: 1px solid #f0f0f0;
    border-bottom: 3px solid #1b6b40;
    color: #000000;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}


.service-card-light > * {
    position: relative;
    z-index: 10;
}

.service-card-light:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Dark Cards */
.service-card-dark {
    background-color: #1a1a1a;
    color: #ffffff;
    position: relative;
    background-size: cover;
    background-position: center;
}

.service-card-dark:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Service Card Image */
.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.service-card-dark .service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.7);
    z-index: 1;
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.service-card-light .service-icon {
    background-color: #1b6b40;
}

.service-card-dark .service-icon {
    background-color: #1b6b40;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    stroke-width: 2;
}

/* Service Number */
.service-number {
    font-size: 60px;
    font-weight: 500;
    color: #1f392c42;
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.service-card-dark .service-number {
    color: rgba(255, 255, 255, 0.15);
}

/* Service Card Title */
.service-card-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 1.3rem 0;
    line-height: 1.3;
    position: relative;
    z-index: 10;
    padding-bottom: 0.75rem;
}

.service-card-title::after {
    content: '';
    display: block;
    width: 20%;
    height: 3px;
    background-color: #1b6b40;
    margin-top: 0.75rem;
}

.service-card-light .service-card-title {
    color: #000000;
}


/* Service Card Description */
.service-card-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 auto 0;
    flex-grow: 1;
    position: relative;
    z-index: 10;
}

.service-card-light .service-card-description {
    color: #666666;
}

.service-card-dark .service-card-description {
    color: #ffffff;
}

/* Service Card Link */
.service-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}


.service-card-light .service-card-link {
    color: #1b6b40;
}

.service-card-dark .service-card-link {
    color: #ffffff;
}

.service-card-link:hover {
    gap: 0.75rem;
}

/* CTA Card */
.service-cta-card {
    background: linear-gradient(135deg, #1b6b40 0%, #0f4229 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 107, 64, 0.3);
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #ffffff;
}

.cta-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: #e0e0e0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateX(4px);
}

.packages-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.city-selection label {
    font-size: 16px !important;
    font-weight: 400;
    color: #1a1a1a;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 20px !important;
}

.how-it-works-steps {
    display: grid;
    align-items: flex-start;
    position: relative;
    padding-top: 3rem !important;
    grid-column: 1 / -1;
}

.footer-newsletter {
    display: flex;
}

.company-content {
    padding: 0rem 0px;
}

.mission-vision-container {
    padding: 0px;
}

.crafting-content {
    padding: 1rem 0px;
}

.stat-box {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.stat-box-number {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    margin: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-top: 4px !important;
}

.contact-form-wrapper {
    padding: 16px !important;
}

.service-overview {
    padding: 4rem 20px !important;
    background: #ffffff;
}

.contact-hero {
    position: relative;
    background-image: linear-gradient(135deg, rgba(27, 29, 33, 0.85) 0%, #1b1d21eb 100%), url('https://buildgo.co.in/wp-content/uploads/2026/08/WhatsApp-Image-2026-08-20-at-11.16.24-1024x682.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    border-radius: 0px;
    justify-content: center;
    margin: 0px;
}

.contact-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.contact-hero .hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero .hero-content {
    text-align: left;
    color: white;
    margin-bottom: 0px !important;
}

.contact-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-hero .breadcrumb-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.contact-hero .breadcrumb-bottom a {
    color: #F26B0F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-hero .breadcrumb-bottom a:hover {
    color: #ffffff;
}

.contact-hero .breadcrumb-divider {
    color: rgba(255, 255, 255, 0.6);
}

.contact-hero .breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
}

.hero-content.hero-about {
    text-align: center;
    background-color: #00ffff00;
}

.hero-about .hero-title {
    color: white;
    text-align: center;
}

/* Hero Section - Tablet & Mobile Responsive */
@media (max-width: 1024px) {
    :root {
        --h1-size: 1.75rem !important;
        --h2-size: 1.5rem !important;
        --body-size: 0.95rem !important;
        --spacing-lg: 1.2rem !important;
        --spacing-xl: 2.2rem !important;
        --spacing-2xl: 3.2rem !important;
    }

    .table-header th {
        padding: 5px 5px;
        font-size: 16px;
    }

    .contact-hero {
        background-image: linear-gradient(135deg, rgba(27, 29, 33, 0.85) 0%, rgba(45, 48, 53, 0.85) 100%), url('https://buildgo.co.in/wp-content/uploads/2026/08/WhatsApp-Image-2026-08-20-at-11.16.24-768x512.jpeg') !important;
    }

    .contact-hero .hero-title {
        font-size: 36px;
    }

    .about-company-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0px;
    }

    .hero {
        padding: 4rem 0px;
    }

    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-title {
        font-size: 42px;
        width: 100%;
    }

    .services-title {
        font-size: 2.5rem;
    }

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

    .service-card {
        min-height: 350px;
        padding: 2rem;
    }

    .service-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    :root {
        --h1-size: 1.5rem !important;
        --h2-size: 1.25rem !important;
        --body-size: 0.9rem !important;
        --spacing-lg: 1rem !important;
        --spacing-xl: 2rem !important;
        --spacing-2xl: 3rem !important;
    }

    .header-container {
        gap: 1rem;
    }

    .header-nav {
        margin-left: 0;
    }

    .logo-image {
        height: 28px !important;
    }

    .menu-toggle {
        display: block !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1000;
        flex-direction: row;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2.5px;
        background: #1a1a1a;
        margin: 5px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

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

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

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

    .header-right {
        display: none !important;
    }

    .header-right .btn {
        display: none !important;
    }

    .header-nav {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #ffffff !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0rem !important;
        overflow-y: auto !important;
        z-index: 998 !important;
        margin-left: 0 !important;
        align-items: stretch !important;
        display: none !important;
    }

    .header-nav.active {
        display: flex !important;
    }

    .nav-link {
        padding: 0px 20px !important;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        width: 100%;
        color: #1a1a1a;
    }

    .nav-link:hover {
        color: var(--primary-color);
        padding-left: 0.5rem;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 3rem 0px;
    }

    .hero-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 var(--spacing-md);
    }

    .hero-content {
        gap: 1rem;
    }

    .hero-label {
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
        width: 100%;
        margin-top: 0;
    }

    .contact-hero .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

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

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

    .hero-video-btn {
        display: none !important;
    }

    .hero-image-container {
        width: 100%;
        max-height: 400px;
    }

    .hero-form-container {
        width: 100%;
        min-width: unset;
    }

    .services-section {
        padding: 4rem 20px;
        background: #ffffff;
    }

    .services-container {
        padding: 0px !important;
        margin-bottom: 0px !important;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        min-height: 320px;
        padding: 1.75rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-card-title {
        font-size: 1.1rem;
    }

    .service-card-description {
        font-size: 0.9rem;
    }

    .guarantees-header-image {
        display: none !important;
    }

    .about-company-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0px !important;
    }

    .company-content {
        padding: 0rem 0px !important;
    }

    .mission-vision-container {
        padding: 0px !important;
    }

    .services-header {
        margin-bottom: -3rem !important;
    }

    .services-header-wrapper {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 4rem;
        align-items: center;
        margin-bottom: 0rem !important;
    }

    .crafting-content {
        padding: 1rem 0px !important;
    }

    .crafting-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stat-box {
        background-color: #ffffff !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        text-align: center !important;
    }

    .stat-box-number {
        font-size: 2rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        margin-bottom: 0.5rem !important;
    }

    .contact-container {
        padding: 0px !important;
    }

    .process-header h2 {
        font-size: 30px !important;
        font-weight: 800;
        color: var(--ink);
        margin: 0 0 14px;
        letter-spacing: -0.5px;
    }

    .process-timeline {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center !important;
        padding-top: 20px;
        width: 100%;
    }

    .packages-container {
        padding: 0px !important;
    }

    .package-header-content h3 {
        font-size: 17px !important;
        color: var(--primary-color);
        margin: 0 0 0.5rem 0;
        font-weight: 700;
    }

    .package-header-content .price {
        font-size: 16px !important;
        color: #ffffff;
        font-weight: 500;
        margin: 0;
    }

    .why-choose-container {
        padding: 0px !important;
    }

    .guarantees-header-wrapper {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 4rem;
        align-items: center;
        margin-bottom: 0rem !important;
    }

    .how-it-works-container {
        padding: 0px !important;
    }

    .how-it-works-hero-wrapper {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 0rem !important;
        align-items: center;
        margin-bottom: 0rem;
    }

    .how-it-works-image img {
        max-width: 100%;
        height: auto;
        border-radius: 16px;
        display: none !important;
    }

    .logo-image {
        height: 28px !important;
        width: auto;
    }
}

@media (max-width: 480px) {
    :root {
        --h1-size: 1.5rem !important;
        --h2-size: 1.25rem !important;
        --body-size: 0.9rem !important;
        --spacing-lg: 1rem !important;
        --spacing-xl: 2rem !important;
        --spacing-2xl: 3rem !important;
    }

    .hero {
        padding: 2rem 0px;
    }

    .hero-container {
        padding: 0 var(--spacing-sm);
        gap: 1.5rem;
    }

    .hero-label {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 30px !important;
        line-height: 1.3;
        color: #1a1a1a;
        margin: 0;
        width: 100%;
        margin-top: 0rem;
        font-weight: 600;
    }

    .hero-description {
        font-size: 15px !important;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .hero-btn, .hero-video-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .services-section {
        padding: 3rem 0px;
    }

    .services-container {
        padding: 0px;
    }

    .services-header-wrapper {
        margin-bottom: 0rem;
    }

    .services-title {
        font-size: 1.5rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        min-height: 300px;
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

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

    .service-number {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .service-card-title {
        font-size: 1rem;
    }

    .service-card-description {
        font-size: 0.85rem;
    }

    a.service-card-link {
        font-size: 13px;
    }

    .process-timeline {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 20px;
        width: 100%;
    }

    .step-icon {
        width: 80px !important;
        height: 80px !important;
    }

    .newsletter-input {
        padding: 10px 12px;
        font-size: 0.85rem;
        width: 70%;
    }

    .services-section {
        padding: 3rem 25px 0px 25px !important;
        background: #ffffff;
    }

    .about-company-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0px !important;
    }

    .company-content {
        padding: 0rem 0px !important;
    }

    .mission-vision-container {
        padding: 0px !important;
    }

    .crafting-content {
        padding: 1rem 0px !important;
    }

    .services-header {
        margin-bottom: -3rem !important;
    }

    .crafting-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stat-box {
        background-color: #ffffff !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        text-align: center !important;
    }

    .stat-box-number {
        font-size: 2rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        margin-bottom: 0.5rem !important;
    }
}
@media (max-width: 767px) {
    .newsletter-btn {
        width: 20% !important;
        height: auto;
        padding: 12px;
    }
}

/* Our Services Details Section */
.services-details-section {
    padding: 6rem 0px;
    background-color: #ffffff;
}

.services-details-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Section Header */
.services-details-header {
    text-align: left;
    margin-bottom: 4rem;
}

.services-details-title {
    font-size: var(--h2-size);
    font-weight: var(--fw-bold);
    color: #000000;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}

.services-details-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
}

/* Services Grid */
.services-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Service Detail Columns */
.service-detail-colums {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Service Detail Card */
.service-detail-card {
    background-color: #F5F5F5;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background-image: url('https://html.awaikenthemes.com/skyvilla/images/service-2.jpg');
    background-size: cover;
    background-position: center;
}

.service-detail-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    border-radius: 16px;
}

.service-detail-card:hover .service-detail-icon,
.service-detail-card:hover .service-detail-title,
.service-detail-card:hover .service-detail-description,
.service-detail-card:hover .view-details-btn {
    position: relative;
    z-index: 2;
}

.service-detail-card:hover .service-detail-title {
    color: #ffffff;
}

.service-detail-card:hover .service-detail-description {
    color: #f0f0f0;
}

.service-detail-card:hover .view-details-btn {
    background-color: rgb(255 193 6);
    color: #000000;
}

/* Service Icon */
.service-detail-icon {
    width: 50px;
    height: 50px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

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

/* Service Title */
.service-detail-title {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: #000000;
    margin: 0;
    margin-top: 0.5rem;
}

/* Service Description */
.service-detail-description {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* View Details Button */
.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.view-details-btn:hover {
    background-color: var(--primary-color);
    color: #000000;
}

.view-details-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.view-details-btn:hover svg {
    transform: translateX(4px);
}

/* Featured Card (Card 4) */
.service-detail-card.featured {
    background-color: transparent;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    grid-column: span 1;
    padding: 30px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.service-detail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.featured-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 4;
    background-color: var(--primary-color);
}

.featured-title {
    color: #ffffff;
    position: relative;
    z-index: 3;
    margin-top: auto;
}

.featured-description {
    color: #f0f0f0;
    position: relative;
    z-index: 3;
}

.featured-btn {
    position: relative;
    z-index: 3;
    background-color: var(--primary-color);
    color: #ffffff;
}

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

/* Social Proof Section */
.services-social-proof {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background-color: #F8F8F8;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.proof-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.proof-icon {
    font-size: 1.5rem;
}

.proof-text p {
    font-size: 18px;
    color: #333333;
    margin: 0;
    font-weight: 400;
}

.proof-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--fw-semibold);
}

.proof-text a:hover {
    text-decoration: underline;
}

.proof-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.rating-number {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: #000000;
}

.rating-stars {
    font-size: 1rem;
}

.rating-label {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-social-proof {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .services-details-section {
        padding: 4rem 0px;
    }

    .services-details-header {
        margin-bottom: 2.5rem;
    }

    .services-details-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-detail-title {
        font-size: 1.1rem;
    }

    .service-detail-description {
        font-size: 0.9rem;
    }

    .services-social-proof {
        padding: 1.5rem;
        gap: 1rem;
    }

    .proof-text {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .proof-rating {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .service-detail-card {
        padding: 1rem;
    }

    .services-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .services-social-proof {
        padding: 1rem;
    }

    .proof-text p,
    .rating-label {
        font-size: 0.85rem;
    }
}
/* Trust Metrics Section */
.trust-section {
    padding: 6rem 0px;
    background-color: #ffffff;
}

.trust-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.trust-title {
    font-size: 42px;
    font-weight: var(--fw-bold);
    color: #000000;
    margin-bottom: 1.3rem;
    text-align: left;
    line-height: 1.2;
}

.trust-divider {
    display: none;
}

.trust-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 3rem 0;
    max-width: 700px;
}

/* Metrics Grid */
.trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Metric Card */
.metric-card {
    text-align: left;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: var(--fw-bold);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    color: #666666;
    font-weight: var(--fw-medium);
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trust-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .metric-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .trust-section {
        padding: 4rem 0px;
    }

    .trust-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

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

    .metric-card {
        padding: 1.5rem 0.5rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .trust-title {
        font-size: 1.5rem;
    }

    .trust-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-card {
        padding: 1rem 0;
    }

    .metric-number {
        font-size: 1.75rem;
    }

    .metric-label {
        font-size: 0.85rem;
    }
}
/* Construction Services Section */
.construction-section {
    padding: 6rem 0px;
    background-color: #F8F8F8;
}

.construction-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.construction-header {
    margin-bottom: 4rem;
    text-align: left;
}

.construction-title {
    font-size: 42px;
    font-weight: var(--fw-bold);
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.construction-subtitle {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
}

/* Grid Layout */
.construction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Construction Card */
.construction-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #000000;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

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

/* Card Image */
.construction-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.construction-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.construction-card:hover .construction-card-image img {
    transform: scale(1.05);
}

/* Gradient Overlay */
.construction-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

/* Card Content */
.construction-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.construction-card-title {
    font-size: 1.8rem;
    font-weight: var(--fw-bold);
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.construction-card-description {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Card Button */
.construction-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: var(--fw-semibold);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.construction-card-btn:hover {
    background-color: #E85A2B;
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .construction-title {
        font-size: 2rem;
    }

    .construction-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .construction-card {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .construction-section {
        padding: 4rem 0px;
    }

    .construction-title {
        font-size: 1.75rem;
    }

    .construction-subtitle {
        font-size: 1rem;
    }

    .construction-card {
        min-height: 300px;
    }

    .construction-card-content {
        padding: 1.5rem;
    }

    .construction-card-title {
        font-size: 1.5rem;
    }

    .construction-card-description {
        font-size: 0.9rem;
    }
}
/* Features Section */
.features-section {
    padding: 2rem 0px;
    background-color: #f5f3f0;
}

.features-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Feature Item */
.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0rem 0rem;
    gap: 0px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #051c14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    padding: 14px;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-icon-award img {
    filter: none;
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        border-right: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }

    .feature-item:nth-child(2n) {
        border-right: none;
    }

    .feature-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .features-section {
        padding: 3rem 0px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-item {
        padding: 1.5rem;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 2rem 0px;
    }

    .features-container {
        padding: 0 var(--spacing-md);
    }

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

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-description {
        font-size: 0.8rem;
    }
}
/* Marquee Section */
.marquee-section {
    padding: 0rem 0;
    background-color: #f8f8f8;
    overflow: hidden;
}

.marquee-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    padding: 1rem 0;
}

.marquee-item {
    font-size: 1.25rem;
    font-weight: 300;
    color: #1a1a1a;
    flex-shrink: 0;
}

.marquee-value {
    font-weight: 700;
}

.marquee-divider {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .marquee-section {
        padding: 1.5rem 0;
    }

    .marquee-content {
        gap: 1rem;
        padding: 0.75rem 0;
    }

    .marquee-item {
        font-size: 1rem;
    }

    .marquee-divider {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .marquee-section {
        padding: 1rem 0;
    }

    .marquee-content {
        gap: 0.75rem;
        padding: 0.5rem 0;
    }

    .marquee-item {
        font-size: 0.9rem;
    }

    .marquee-divider {
        font-size: 1rem;
    }
}
/* Video Section */
.video-section {
    width: 100%;
    padding: 0rem 0px;
    background-color: #ffffff;
}

.video-section-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.video-title {
    display: none;
}

.video-title-italic {
    font-style: italic;
    font-weight: var(--fw-bold);
}

.video-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    position: relative;
}

.video-cover {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
}

.video-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #000000;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


.video-btn-text {
    font-size: 12px;
    font-weight: var(--fw-semibold);
    text-align: center;
    white-space: nowrap;
    color: white;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.video-play-btn svg {
    width: 40px;
    height: 40px;
    color: white;
}


/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1300px;
    aspect-ratio: 16 / 9;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    z-index: 1001;
}

.video-modal-close:hover {
    transform: scale(1.2);
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
}

.video-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-cover {
        height: 650px;
    }

    .video-play-btn {
        min-width: 120px;
        height: 120px;
    }

    .video-play-btn svg {
        width: 28px;
        height: 28px;
    }

    .video-btn-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .video-cover {
        height: 450px;
    }

    .video-play-btn {
        min-width: 100px;
        height: 100px;
        gap: 6px;
    }

    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }

    .video-btn-text {
        font-size: 0.75rem;
    }

    .video-modal-close {
        top: 20px;
    }

    .video-modal-content {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .video-cover {
        height: 300px;
    }

    .video-play-btn {
        min-width: 80px;
        height: 80px;
        gap: 4px;
    }

    .video-play-btn svg {
        width: 20px;
        height: 20px;
    }

    .video-btn-text {
        font-size: 0.65rem;
    }

    .video-modal-content {
        width: 100%;
        aspect-ratio: auto;
        height: 60vh;
    }
}
/* Guarantees Section */
.guarantees-section {
    padding: 6rem 0px;
    background-color: #f5f5f5;
}

.guarantees-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Guarantees Header Wrapper */
.guarantees-header-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.guarantees-header {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.guarantees-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0rem 0;
    line-height: 1.2;
    position: relative;
}

.guarantees-title .highlight-green {
    color: #1b6b40;
}

.guarantees-subtitle {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
}

.guarantees-header-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.guarantees-header-image img {
    max-width: 55%;
    height: auto;
    margin-right: 0;
    border-radius: 16px;
}

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

/* Guarantee Card */
.guarantee-card {
    border-radius: 20px;
    padding: 30px 0px 0px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    color: #ffffff;
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: #07371f;
}

.guarantee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.guarantee-content {
    flex-grow: 1;
    margin-bottom: 2rem;
    padding: 0;
    padding-right: 30px;
}

.guarantee-icon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.guarantee-icon-top {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.guarantee-icon-top svg {
    width: 32px;
    height: 32px;
    color: #07371f;
}

.guarantee-number {
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    margin: 0;
    line-height: 1;
}

.guarantee-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.guarantee-description {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.guarantee-icon {
    width: 100%;
    height: 200px;
    background-color: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-top: auto;
}

.guarantee-icon svg {
    width: 100%;
    height: 100%;
}

.guarantee-learn-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 28px;
    font-weight: 100;
    padding: 0;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.guarantee-learn-btn:hover {
    background-color: #ffffff;
    color: #1b6b40;
    transform: scale(1.1);
}

/* Guarantee Modal */
.guarantee-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.guarantee-modal.active {
    display: flex;
}

.guarantee-modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.guarantee-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    transition: color 0.3s ease;
}

.guarantee-modal-close:hover {
    color: #000000;
}

.guarantee-modal-close svg {
    width: 24px;
    height: 24px;
}

.guarantee-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.guarantee-modal-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Guarantee Images */
.guarantee-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 0;
    margin-bottom: 0;
    flex-shrink: 0;
    border-radius: 2000px 0px 0px;
}

.guarantee-image-1 {
    background-image: url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?w=400&h=350&fit=crop');
}

.guarantee-image-2 {
    background-image: url('https://designesia.com/themes/homely/images/misc/s2.webp');
}

.guarantee-image-3 {
    background-image: url('https://images.unsplash.com/photo-1611273426858-450d8e3c9fce?w=400&h=350&fit=crop');
}

/* Responsive Design */
@media (max-width: 1024px) {
    .guarantees-title {
        font-size: 2rem;
    }

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

    .guarantee-card {
        padding: 2rem;
    }

    .guarantee-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .guarantees-section {
        padding: 4rem 0px;
    }

    .guarantees-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .guarantees-title {
        font-size: 1.75rem;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guarantee-card {
        padding: 1.5rem;
    }

    .guarantee-title {
        font-size: 1.1rem;
    }

    .guarantee-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .guarantees-section {
        padding: 3rem 0px;
    }

    .guarantees-title {
        font-size: 1.5rem;
    }

    .guarantees-nav-btn {
        width: 40px;
        height: 40px;
    }

    .guarantee-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .guarantee-title {
        font-size: 1rem;
    }

    .guarantee-description {
        font-size: 0.85rem;
    }

    .guarantee-icon {
        width: 50px;
        height: 50px;
    }

    .guarantee-arrow {
        width: 40px;
        height: 40px;
    }
}
/* Our Projects Section */
.projects-section {
    padding: 6rem 0px;
    background-color: #F8F8F8;
}

.projects-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Projects Header */
.projects-header {
    text-align: left;
    margin-bottom: 3rem;
}

.projects-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.projects-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Project Card */
.project-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 400px;
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

/* Project Status Badge */
.project-status {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.project-status.under-construction {
    background-color: var(--primary-color);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
    border-radius: 20px;
}

.project-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-dot {
    width: 6px;
    height: 6px;
    background-color: #fd9204;
    border-radius: 50%;
    flex-shrink: 0;
}

.project-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.project-card:hover {
    transform: translateY(-8px);
}

/* Projects CTA */
.projects-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
}

.cta-link {
    color: #fd9204;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: underline;
    display: inline-block;
}

.cta-link:hover {
    color: #ffed4e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .projects-title {
        font-size: 2.5rem;
    }

    .projects-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .projects-section {
        padding: 4rem 0px;
    }

    .projects-header {
        margin-bottom: 3rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .projects-title {
        font-size: 2rem;
    }

    .projects-subtitle {
        font-size: 1.25rem;
    }

    .project-card {
        min-height: 300px;
    }

    .projects-cta {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 3rem 0px;
    }

    .projects-title {
        font-size: 1.75rem;
    }

    .projects-subtitle {
        font-size: 1.1rem;
    }

    .project-name {
        font-size: 1.25rem;
    }

    .cta-text {
        font-size: 0.85rem;
    }
}
/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.how-it-works-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Hero Wrapper */
.how-it-works-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 0rem;
}

/* Hero Section */
.how-it-works-hero {
    display: contents;
}

.how-it-works-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-it-works-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    margin: 0;
}

.how-it-works-title .highlight-green {
    color: #1b6b40;
}

.how-it-works-subtitle {
    font-size: 1rem;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

.how-it-works-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Steps Layout */
.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    padding-top: 5rem;
    grid-column: 1 / -1;
}

/* Step Connector Lines */
.step-connector {
    position: absolute;
    top: 60px;
    height: 2px;
    background-image: linear-gradient(to right, #1b6b40 4px, transparent 4px);
    background-size: 8px 2px;
    border: none;
}

.step-connector:nth-of-type(1) {
    left: calc(12.5% + 40px);
    width: calc(25% - 80px);
}

.step-connector:nth-of-type(3) {
    left: calc(37.5% + 40px);
    width: calc(25% - 80px);
}

.step-connector:nth-of-type(5) {
    left: calc(62.5% + 40px);
    width: calc(25% - 80px);
}

/* Work Step Card */
.work-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    margin-top: 40px;
    height: 400px;
}

.work-step:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: #d0d0d0;
}

/* Step Icon */
.step-icon {
    width: 100px;
    height: 100px;
    background-color: #1b6b40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    top: -53px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 16px rgb(98 137 116 / 17%);
    border: 10px solid white;
}

.step-icon svg {
    width: 45px;
    height: 45px;
    color: #ffffff;
    stroke-width: 1.5;
}

/* Step Title */
.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    margin-top: 3rem;
}

.step-title::after {
    content: '';
    display: block;
    width: 20%;
    height: 3px;
    background-color: #1b6b40;
    margin-top: 0.75rem;
    margin-left: auto;
    margin-right: auto;
}

/* Step Description */
.step-description {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Step Button */
.step-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 10px 16px;
    background-color: #e8e8e8;
    color: #1b6b40;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
    letter-spacing: normal;
    text-transform: uppercase;
    width: 100%;
}

.step-button:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .how-it-works-section {
        padding: 4rem 0;
    }

    .how-it-works-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .how-it-works-title {
        font-size: 32px;
    }

    .how-it-works-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 3rem 0;
    }

    .how-it-works-container {
        padding: 0 var(--spacing-md);
    }

    .how-it-works-title {
        font-size: 1.75rem;
    }

    .how-it-works-subtitle {
        font-size: 1rem;
    }

    .how-it-works-steps {
        grid-template-columns: 1fr;
    }

    .work-step {
        padding: 1.5rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon svg {
        width: 40px;
        height: 40px;
    }

    .step-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 2rem 0;
    }

    .how-it-works-title {
        font-size: 1.5rem;
    }

    .how-it-works-subtitle {
        font-size: 0.95rem;
    }

    .work-step {
        padding: 1.25rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon svg {
        width: 35px;
        height: 35px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}
/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background-color: #f5f3f0;
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Blog Header */
.blog-header {
    text-align: left;
    margin-bottom: 4rem;
}

.blog-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Blog Category Badge */
.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Blog Card */
.blog-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
.blog-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Blog Category Badge */
.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #1b6b40;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog Content */
.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Blog Post Title */
.blog-post-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

/* Blog Date */
.blog-date {
    font-size: 0.85rem;
    color: #999999;
    margin: 0 0 1rem 0;
}

/* Blog Excerpt */
.blog-excerpt {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

/* Blog Link */
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1b6b40;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #f57b06;
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-section {
        padding: 4rem 0;
    }

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

    .blog-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 0;
    }

    .blog-container {
        padding: 0 var(--spacing-md);
    }

    .blog-header {
        margin-bottom: 3rem;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-post-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 2rem 0;
    }

    .blog-title {
        font-size: 1.5rem;
    }

    .blog-subtitle {
        font-size: 0.95rem;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .blog-post-title {
        font-size: 1rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }
}
/* About Us Section */
.about-section {
    padding: 6rem 0px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.about-content {
    max-width: 100%;
}

.about-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 4rem 0px;
    }

    .about-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .about-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0px;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .about-description {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: left;
    }
}
/* About Page Styles */

/* Hero Section */
.about-hero {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    background-attachment: fixed;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    padding: 4rem var(--spacing-lg);
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: #ffffff;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 40%;
    color: #ffffff;
    z-index: 2;
    background-color: #F6F3EC;
    padding: 2rem;
    border-radius: 20px;
    justify-content: center;
    height: 500px;
}

.about-hero .hero-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: 0;
    font-family: var(--font-primary);
    line-height: 1.3;
}

/* Breadcrumb Bottom */
.breadcrumb-bottom {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 2rem;
    justify-content: center;
}

.breadcrumb-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color var(--transition-base);
}

.breadcrumb-bottom a:hover {
    color: var(--primary-color);
}

.breadcrumb-divider {
    color: #ffffff;
    opacity: 0.6;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

/* About Company Section */
.about-company-section {
    padding: 5rem var(--spacing-lg);
    background-color: #f5f5f5;
}

.about-company-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 670px;
}

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

.company-content {
    padding: 2rem;
}

.company-label {
    display: block;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.company-heading {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.company-reviews {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-avatars {
    display: flex;
    position: relative;
    width: 160px;
    height: 40px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f5f5f5;
    position: absolute;
    top: 0;
}

.avatar:nth-child(1) {
    left: 0;
    z-index: 4;
}

.avatar:nth-child(2) {
    left: 30px;
    z-index: 3;
}

.avatar:nth-child(3) {
    left: 60px;
    z-index: 2;
}

.avatar:nth-child(4) {
    left: 90px;
    z-index: 1;
}

.review-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.review-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.review-label {
    font-size: 0.9rem;
    color: #999999;
}

.company-description {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.company-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 23px;
    background-color: #f57b06;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 17px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.company-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

/* Responsive About Company */
@media (max-width: 1024px) {
    .about-company-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-image {
        height: 350px;
    }

    .company-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-company-section {
        padding: 3rem var(--spacing-md);
    }

    .company-heading {
        font-size: 1.8rem;
    }

    .company-description {
        font-size: 1rem;
    }

    .review-avatars {
        width: 140px;
    }

    .avatar {
        width: 35px;
        height: 35px;
    }

    .avatar:nth-child(2) {
        left: 25px;
    }

    .avatar:nth-child(3) {
        left: 50px;
    }

    .avatar:nth-child(4) {
        left: 75px;
    }
}

@media (max-width: 480px) {
    .about-company-section {
        padding: 2rem var(--spacing-md);
    }

    .company-heading {
        font-size: 1.5rem;
    }

    .company-image {
        height: 250px;
    }

    .company-reviews {
        gap: 1rem;
    }

    .review-avatars {
        width: 120px;
    }

    .avatar {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }

    .avatar:nth-child(2) {
        left: 20px;
    }

    .avatar:nth-child(3) {
        left: 40px;
    }

    .avatar:nth-child(4) {
        left: 60px;
    }

    .review-count {
        font-size: 1rem;
    }

    .review-label {
        font-size: 0.8rem;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem var(--spacing-lg);
    background-color: #ffffff;
}

.mission-vision-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.mission-vision-header {
    text-align: left;
    margin-bottom: 0rem;
}

.mission-label {
    display: block;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.mission-heading {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.mission-description {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 3rem;
}

.mission-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.mission-image:hover img {
    transform: scale(1.05);
}

.mission-description-bottom {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    text-align: left;
}

/* Responsive Mission & Vision */
@media (max-width: 1024px) {
    .mission-heading {
        font-size: 2.2rem;
    }

    .mission-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 3rem var(--spacing-md);
    }

    .mission-heading {
        font-size: 1.8rem;
    }

    .mission-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-image {
        height: 250px;
    }

    .mission-description,
    .mission-description-bottom {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 2rem var(--spacing-md);
    }

    .mission-heading {
        font-size: 1.5rem;
    }

    .mission-description,
    .mission-description-bottom {
        font-size: 0.95rem;
    }

    .mission-image {
        height: 200px;
    }
}

/* Experience Section */
.experience-section {
    padding: 5rem var(--spacing-lg);
    background-color: #f5f5f5;
}

.experience-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.experience-accent {
    width: 8px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

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

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    color: #999999;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-number .plus {
    font-size: 1.8rem;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
}

/* Content Section */
.content-section {
    padding: 5rem var(--spacing-lg);
    background-color: #f9f9f9;
}

.content-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-image {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 16px;
}

.content-breadcrumb {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.breadcrumb-label {
    color: var(--primary-color);
    text-transform: uppercase;
}

.breadcrumb-separator {
    color: #e0e0e0;
}

.breadcrumb-label-second {
    color: var(--primary-color);
    text-transform: uppercase;
}

.content-heading {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-description {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.feature-checkmark {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.content-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.content-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.content-button::after {
    content: '→';
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero {
        height: 450px;
        padding: 3rem 4rem;
    }

    .about-hero .hero-title {
        font-size: 2.8rem;
    }

    .experience-title {
        font-size: 1.3rem;
    }

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

    .content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 380px;
        background-attachment: scroll;
        padding: 2rem 2.5rem;
        align-items: flex-start;
    }

    .about-hero .hero-title {
        font-size: 2rem;
    }

    .hero-content-wrapper {
        height: 100%;
        justify-content: space-between;
    }

    .breadcrumb-bottom {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .experience-section {
        padding: 3rem var(--spacing-md);
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .experience-accent {
        width: 50px;
        height: 8px;
        transform: rotate(0deg);
    }

    .experience-title {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .content-section {
        padding: 3rem var(--spacing-md);
    }

    .content-card {
        padding: 2rem;
    }

    .content-heading {
        font-size: 1.8rem;
    }

    .content-description {
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .about-hero {
        height: 320px;
        padding: 1.5rem 2rem;
    }

    .about-hero .hero-title {
        font-size: 1.5rem;
    }

    .hero-content-wrapper {
        justify-content: space-between;
    }

    .breadcrumb-bottom {
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    .experience-section {
        padding: 2rem var(--spacing-md);
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

    .content-heading {
        font-size: 1.5rem;
    }

    .content-card {
        padding: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 0px;
    background-color: #ffffff;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.testimonials-header {
    text-align: left;
    margin-bottom: 4rem;
}

.testimonials-label {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.testimonials-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background-color: #ffffff;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.carousel-nav:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    flex: 1;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.star {
    color: var(--primary-color);
}

.star.empty {
    color: #e0e0e0;
}

.testimonial-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.author-role {
    color: #999999;
    font-size: 0.9rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Heritage Section */
.heritage-section {
    padding: 5rem var(--spacing-lg);
    background-color: #ffffff;
}

.heritage-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.heritage-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

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

.heritage-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.heritage-content {
    padding: 2rem;
}

.heritage-label {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.heritage-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.heritage-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.heritage-tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: #666666;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-base);
}

.heritage-tab.active {
    color: #ffffff;
    background-color: var(--primary-color);
    border-radius: 15px;
    border-bottom: none;
}

.heritage-tab:hover:not(.active) {
    color: var(--primary-color);
}

.heritage-text {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.heritage-small-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.heritage-text p {
    color: #666666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.heritage-features {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-item-heritage {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
}

.feature-check {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.heritage-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.heritage-btn:hover {
    background-color: var(--primary-dark);
}

.heritage-btn::after {
    content: '→';
    font-size: 1.2rem;
}

/* Crafting Section */
.crafting-section {
    padding: 5rem var(--spacing-lg);
    background-color: #f9f9f9;
}

.crafting-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.crafting-image-left,
.crafting-image-right {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.crafting-image-left img,
.crafting-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crafting-content {
    padding: 2rem;
}

.crafting-label {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.crafting-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.crafting-description {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.crafting-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.crafting-btn:hover {
    color: white;
}

.crafting-btn::after {
    content: '→';
    font-size: 1.2rem;
}

.crafting-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.stat-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-box-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-box-label {
    color: #666666;
    font-size: 1rem;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 5rem var(--spacing-lg);
    background-color: #ffffff;
}

.team-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-label {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
}

.member-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 350px;
}

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

.member-share {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0;
}

.member-image:hover .member-share {
    opacity: 1;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #999999;
    font-size: 1rem;
}

/* CEO Section */
.ceo-section {
    padding: 5rem var(--spacing-lg);
    background-color: #f9f9f9;
}

.ceo-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ceo-heading {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ceo-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ceo-quote {
    background-color: #fef5e7;
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.quote-text {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.ceo-info {
    padding-top: 1rem;
}

.ceo-title {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0.5rem;
}

.ceo-signature {
    font-family: cursive;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.ceo-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

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

.ceo-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.ceo-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.ceo-image-badges {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.ceo-badge {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.ceo-badge.sales-rate {
    background-color: var(--primary-color);
    color: #ffffff;
}

.ceo-badge.listings {
    background-color: #fef5e7;
    color: #1a1a1a;
}

.badge-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.badge-value {
    font-size: 1.8rem;
    font-weight: 600;
}

.badge-name {
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .heritage-container,
    .ceo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .crafting-container {
        grid-template-columns: 1fr;
    }

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

    .heritage-image,
    .ceo-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        flex-direction: column;
    }

    .carousel-nav {
        display: none;
    }

    .testimonials-label,
    .heritage-label,
    .crafting-label,
    .team-label {
        font-size: 0.8rem;
    }

    .testimonials-title,
    .heritage-title,
    .crafting-title,
    .team-title {
        font-size: 2rem;
    }

    .heritage-text {
        flex-direction: column;
    }

    .heritage-small-img {
        width: 100%;
    }

    .crafting-stats {
        grid-template-columns: 1fr;
    }

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

    .ceo-image-badges {
        width: 90%;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .heritage-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 1rem 1.5rem;
    }

    .crafting-container,
    .heritage-container,
    .ceo-container {
        gap: 1.5rem;
    }

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

    .ceo-heading,
    .crafting-title,
    .heritage-title,
    .testimonials-title {
        font-size: 1.5rem;
    }

    .heritage-image,
    .ceo-image {
        height: 250px;
    }
}

/* CTA Section */
.cta-section {
    padding: 4rem var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    width: 1300px;
    margin: auto;
    margin-top: 4rem;
    border-radius: 20px;
}

.cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.cta-content {
    flex: 1;
}

.cta-heading {
    font-size: 2.625rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.contact-icon {
    font-size: 1.3rem;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.contact-link:hover {
    text-decoration: underline;
}

.cta-apply-btn {
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d7d3e;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cta-apply-btn:hover {
    transform: translateY(-2px);
    background-color: #f0f0f0;
}

/* Responsive CTA */
@media (max-width: 1024px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-right {
        align-items: center;
    }

    .cta-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem var(--spacing-md);
    }

    .cta-container {
        gap: 2rem;
    }

    .cta-heading {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .cta-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2rem var(--spacing-md);
    }

    .cta-heading {
        font-size: 1.3rem;
    }

    .cta-apply-btn {
        width: 100%;
    }

    .contact-item {
        font-size: 0.95rem;
    }
}
/* Contact Page Styles - Contact Information Section */
.contact-info-section {
    padding: 5rem var(--spacing-lg);
    background-color: #ffffff;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.625rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content Grid */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #f9f9f9;
    padding: 3rem;
    border-radius: 16px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

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

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

.form-input {
    padding: 1.1rem 1.2rem;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    color: #1a1a1a;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(242, 107, 15, 0.08);
}

.form-input::placeholder {
    color: #aaa;
}

.form-input option {
    color: #1a1a1a;
}

.form-submit-btn {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Contact Details */
.contact-details-wrapper {
    background-color: #f5f5f5;
    padding: 3rem;
    border-radius: 16px;
}

.details-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-detail:last-of-type {
    border-bottom: none;
}

.detail-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.detail-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
}

.detail-link:hover {
    text-decoration: underline;
}

.detail-text {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.contact-social {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-base);
    border: 1px solid var(--primary-color);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Locations Section */
.locations-section {
    padding: 5rem var(--spacing-lg);
    background-color: #f5f5f5;
}

.locations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.locations-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.location-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.location-city {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.location-address {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

/* Support Section */
.support-section {
    padding: 5rem var(--spacing-lg);
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.support-left {
    padding: 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.support-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.support-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(242, 107, 15, 0.12);
    transform: translateY(-3px);
}

.feature-item p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.feature-icon {
    display: block;
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(242, 107, 15, 0.1) 0%, rgba(242, 107, 15, 0.05) 100%);
    border-radius: 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
}

.feature-text {
    flex: 1;
    text-align: justify;
}

.feature-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.4rem 0;
    line-height: 1.4;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.feature-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.support-form-wrapper {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.support-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

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

.support-submit-btn {
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e05c03 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(242, 107, 15, 0.2);
}

.support-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 107, 15, 0.35);
}

.support-submit-btn:active {
    transform: translateY(-1px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem var(--spacing-lg);
    background-color: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

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

.testimonial-card {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonial-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.3rem 0;
}

.author-title {
    font-size: 0.85rem;
    color: #999999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

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

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

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

    .support-left {
        padding-right: 0;
    }

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

    .locations-title,
    .support-title,
    .testimonials-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .info-cards-section {
        padding: 3rem var(--spacing-md);
        margin-top: -2rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 var(--spacing-md);
    }

    .info-card {
        padding: 1.5rem;
    }

    .contact-info-section {
        padding: 3rem var(--spacing-md);
    }

    .contact-container {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form-wrapper,
    .contact-details-wrapper {
        padding: 2rem;
    }

    .form-title,
    .details-title {
        font-size: 1.25rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .contact-detail {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .locations-section,
    .support-section,
    .testimonials-section {
        padding: 3rem var(--spacing-md);
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .locations-title,
    .support-title,
    .testimonials-title {
        font-size: 1.8rem;
    }

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

    .support-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .info-cards-section {
        padding: 2rem var(--spacing-md);
        margin-top: -1.5rem;
    }

    .info-cards-grid {
        gap: 1rem;
        padding: 0 var(--spacing-md);
    }

    .info-card {
        padding: 1rem;
    }

    .info-card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .info-card-title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .info-card-contact {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .info-card-description {
        font-size: 0.8rem;
    }

    .contact-info-section {
        padding: 2rem var(--spacing-md);
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-form-wrapper,
    .contact-details-wrapper {
        padding: 1.5rem;
    }

    .form-title,
    .details-title {
        font-size: 1.1rem;
    }

    .contact-form {
        gap: 0.75rem;
    }

    .form-input {
        padding: 0.75rem;
    }

    .detail-icon {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .locations-section,
    .support-section,
    .testimonials-section {
        padding: 2rem var(--spacing-md);
    }

    .locations-title,
    .support-title,
    .testimonials-title {
        font-size: 1.5rem;
    }

    .locations-header,
    .testimonials-header {
        margin-bottom: 2rem;
    }

    .location-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .location-city {
        font-size: 1.2rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }

    .support-form-wrapper {
        padding: 1.5rem;
    }

    .support-submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .testimonial-quote {
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}
/* Reusable Sections - Used across multiple pages */

/* Info Cards Section */
.info-cards-section {
    padding: 4rem var(--spacing-lg);
    background-color: #f9f9f9;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.info-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.info-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.info-card-contact {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.info-card-description {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .info-cards-section {
        padding: 3rem var(--spacing-md);
        margin-top: -2rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 var(--spacing-md);
    }

    .info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .info-cards-section {
        padding: 2rem var(--spacing-md);
        margin-top: -1.5rem;
    }

    .info-cards-grid {
        gap: 1rem;
        padding: 0 var(--spacing-md);
    }

    .info-card {
        padding: 1rem;
    }

    .info-card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .info-card-title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .info-card-contact {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .info-card-description {
        font-size: 0.8rem;
    }
}

/* How It Works Page Styles */

.how-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem var(--spacing-lg);
    background-color: #ffffff;
}

.how-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.how-description {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
}

.step-card {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    background-color: #f5f5f5;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-description {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 4rem 0 1rem 0;
}

.step-card .step-number {
    font-size: 1.1rem;
    font-weight: 500;
    color: #999999;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem var(--spacing-lg);
    background-color: #f5f5f5;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.timeline-description {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.timeline-item {
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: 50%;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.timeline-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-phase {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem var(--spacing-lg);
    background-color: #ffffff;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

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

.why-card {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-base);
}

.why-card:hover {
    background-color: #f5f5f5;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.why-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.why-card-description {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.625rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .timeline::before {
        left: 0;
        transform: translateX(-50%);
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 3rem;
        padding-right: 0;
    }

    .timeline-item {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-section,
    .timeline-section,
    .why-choose-section,
    .cta-section {
        padding: 3rem var(--spacing-md);
    }

    .how-container {
        padding: 0 var(--spacing-md);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-title,
    .timeline-title,
    .why-title,
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 0.875rem 2.5rem;
        font-size: 0.95rem;
    }

    .timeline {
        padding: 1rem 0;
    }

    .timeline::before {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .how-it-works-section,
    .timeline-section,
    .why-choose-section,
    .cta-section {
        padding: 2rem var(--spacing-md);
    }

    .steps-grid {
        gap: 1rem;
    }

    .why-grid {
        gap: 1rem;
    }

    .step-card,
    .why-card {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-icon {
        font-size: 2rem;
    }

    .why-icon {
        font-size: 2rem;
    }

    .how-title,
    .timeline-title,
    .why-title,
    .cta-title {
        font-size: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
}

/* Process Flow Section */
.process-flow-wrapper {
    background-color: #ffffff;
    width: 100%;
    margin: 0rem 0;
    padding: 5rem 0 0rem 0rem;
}

.process-header {
    text-align: center;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.process-highlight {
    color: var(--primary-color);
    position: relative;
}

.process-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.process-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 1.5rem 0 0 0;
    line-height: 1.6;
}

.process-timeline-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px;
    position: relative;
    flex-wrap: nowrap;
}

.process-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 200px;
    max-width: 240px;
}

.step-1 {
    margin-top: 0;
    padding-top: 60px;
}

.step-2 {
    margin-top: 80px;
    padding-top: 0;
}

.step-3 {
    margin-top: 0;
    padding-top: 60px;
}

.step-4 {
    margin-top: 80px;
    padding-top: 0;
}

.step-5 {
    margin-top: 0;
    padding-top: 60px;
}

.process-card {
    width: 100%;
    max-width: 250px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgb(197 197 197);
    position: relative;
    transition: transform 0.3s ease;
}

.light-card {
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.2rem;
    gap: 0.8rem;
}

.dark-card {
    background: #1a1a1a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.process-number-circle {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
}

.top-circle {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
}

.bottom-circle {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: var(--primary-color);
}

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

.process-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.dark-icon {
    color: var(--primary-color);
}

.process-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.process-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.dark-name {
    color: #ffffff;
}

.dark-name::after {
    background: var(--primary-color);
}

.process-description {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.dark-desc {
    color: #cccccc;
    font-size: 13px;
}

.process-image-container {
    width: 100%;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dark-image {
    height: 160px;
    border-radius: 0;
    margin-top: auto;
}

.process-card-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.connector {
    position: absolute;
    width: 150%;
    height: 80px;
    z-index: 0;
    display: block;
    left: -25%;
    top: -80px;
}

.connector-1-2 {
}

.connector-2-3 {
}

.connector-3-4 {
}

.connector-4-5 {
}

/* Responsive Process Flow */
@media (max-width: 1300px) {
    .process-step {
        flex: 0 0 calc(33.333% - 30px);
    }

    .process-connector {
        flex: 0 0 30px;
    }
}

@media (max-width: 768px) {
    .process-flow-container {
        flex-direction: column;
        gap: 2rem;
    }

    .process-step {
        flex: 0 0 auto;
        min-height: auto;
    }

    .process-number-circle {
        position: static;
        transform: none;
        top: auto;
        left: auto;
        margin-bottom: 1rem;
    }

    .process-connector {
        width: 3px;
        height: 60px;
        flex: none;
        margin: 1rem 0;
    }

    .process-title {
        font-size: 36px;
    }

    .process-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Why Choose BuildGo Section */
.why-choose-section {
    padding: 6rem var(--spacing-lg);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.why-choose-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.why-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e56a00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-card-icon svg {
    width: 45px;
    height: 45px;
    color: #ffffff;
}

.why-card-title {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.why-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Why Choose Section */
@media (max-width: 1300px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-choose-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem var(--spacing-md);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-choose-title {
        font-size: 1.75rem;
    }

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

/* Packages Section */
.packages-section {
    padding: 6rem var(--spacing-lg);
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.packages-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.packages-header {
    text-align: center;
    margin-bottom: 2rem;
}

.packages-title {
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.packages-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.packages-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.city-selection {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0rem;
    justify-content: center;
}

.city-selection label {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.city-select {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #1a1a1a;
    cursor: pointer;
    width: 160px;
    transition: all 0.3s ease;
}

.city-select:hover {
    border-color: #e56a00;
}

.city-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 123, 6, 0.1);
}

/* Packages Table Styling */
.packages-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.packages-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.packages-table thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--primary-color);
}

.table-header {
    border-bottom: 3px solid #ddd;
}

.table-header th {
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 600;
    vertical-align: middle;
}

.feature-column {
    width: 25%;
    color: var(--primary-color);
    font-size: 30px;
}

.package-column {
    width: 25%;
    position: relative;
}

.recommended-column {
    background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
}

.package-header-content {
    position: relative;
}

.package-header-content h3 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.package-header-content .price {
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

.package-header-content .price span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.recommended-badge {
    position: absolute;
    top: -34px;
    right: 50%;
    transform: translateX(50%);
    background: #c9a961;
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Table Body */
.packages-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
}

.packages-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.packages-table tbody td {
    padding: 1.2rem 1.5rem;
    color: #333;
    font-size: 0.95rem;
}

.section-header {
    background-color: #d9cfc0;
}

.section-header td {
    font-weight: 700;
    color: #5a5a5a;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 1.5rem;
}

.feature-name {
    font-weight: 600;
    color: #1a1a1a;
}

/* Responsive Packages Table */
@media (max-width: 1024px) {
    .table-header th {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }

    .packages-table tbody td {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 3rem var(--spacing-md);
    }

    .packages-title {
        font-size: 2rem;
    }

    .packages-table-wrapper {
        overflow-x: auto;
    }

    .packages-table {
        min-width: 600px;
    }
}

/* Process Steps Section - Alternating Layout */
.process-steps-section {
    padding: 5rem var(--spacing-lg);
    background-color: #ffffff;
}

.process-steps-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.process-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.process-step-item {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    padding: 3rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

.process-step-item:last-child {
    border-bottom: none;
}

.process-step-item:hover {
    background-color: #fafafa;
    padding-left: 3rem;
    padding-right: 3rem;
}

.process-step-image {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.process-step-item:hover .process-step-image {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.process-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step-content {
    flex: 1;
    padding: 1rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-number-badge {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    opacity: 0.25;
    line-height: 1;
}

.process-step-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.process-step-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

/* Responsive Process Steps */
@media (max-width: 1024px) {
    .process-step-item {
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .process-step-image {
        height: 350px;
    }

    .process-title {
        font-size: 2.5rem;
    }

    .process-step-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .process-steps-section {
        padding: 3rem var(--spacing-md);
    }

    .process-step-item,
    .process-step-item.reverse {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .process-step-image {
        height: 300px;
        width: 100%;
    }

    .process-header {
        margin-bottom: 2.5rem;
    }

    .process-title {
        font-size: 2rem;
    }

    .process-subtitle {
        font-size: 1rem;
    }

    .process-step-content {
        padding: 1.5rem 0;
    }

    .process-step-title {
        font-size: 1.3rem;
    }

    .process-step-text {
        font-size: 0.95rem;
    }

    .step-number-badge {
        font-size: 2rem;
    }
}

/* Animated Line */
.line {
    width: 480px;
    height: 2px;
    overflow: hidden;
}

.line::before {
    content: "";
    display: block;
    padding: 0 12px;
    margin: 0 -12px;
    border-bottom: 2px dashed var(--primary-color);
    animation: move linear 0.75s infinite;
}

@keyframes move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(12px);
    }
}
/* Footer */
.footer {
    background-color: #0f1419;
    color: #ffffff;
}

/* Footer Top Image */
.footer-top-image {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border-bottom: 5px solid #f57b06;
    padding-top: 5rem;
}

.footer-top-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Main */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 4rem 0 1rem 0;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-about {
    gap: 1rem;
}

h3.footer-logo {
    margin-bottom: 0px;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #ffffff;
    margin: -10px 0 0rem 0;
    font-style: normal;
}

.footer-description {
    font-size: 0.95rem;
    color: #999999;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.footer-view-more {
    color: #fd9204;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-view-more:hover {
    color: #ffed4e;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fd9204;
}

/* Newsletter */
.footer-newsletter {
    gap: 1.5rem;
}

.newsletter-text {
    font-size: 0.9rem;
    color: #999999;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background-color: transparent;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #333333;
    border-radius: 4px;
    background-color: transparent;
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: #666666;
}

.newsletter-input:focus {
    outline: none;
    border-color: #fd9204;
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background-color: #fd9204;
    color: #0f1419;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
}

/* Footer Additional Section */
.footer-additional {
    border-top: 1px solid #1a1f3a;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
}

.footer-services {
    flex: 1;
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-service-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-service-link:hover {
    color: #fd9204;
}

.footer-service-link .arrow {
    color: #fd9204;
}

.footer-contact-section {
    flex: 0 0 auto;
    text-align: center;
}

.footer-contact-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    color: #999999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fd9204;
}

.footer-socials-section {
    flex: 0 0 auto;
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333333;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #fd9204;
    color: #0f1419;
    border-color: #fd9204;
}

/* List Items */
li {
    margin-bottom: 0px;
}

/* Footer Links List Items */
.footer-links li {
    border-bottom: 0px dashed #4e4e4e;
    padding-bottom: 4px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #8a8b94;
    padding: 20px 0px;
    text-align: left;
    color: #666666;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #F26B0F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-copyright {
    margin: 0;
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-additional {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .footer-contact-section {
        text-align: left;
    }

    .footer-socials-section {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social-icons {
        gap: 0.5rem;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        height: auto;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }

    .footer-column {
        gap: 1rem;
    }

    .footer-title {
        font-size: 0.9rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .newsletter-input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}
/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --h3-size: 1.5rem;
        --h4-size: 1.25rem;
    }

    .header-container {
        padding: var(--spacing-md) var(--spacing-md);
        gap: var(--spacing-md);
    }

    .header-nav {
        gap: var(--spacing-md);
        margin-left: var(--spacing-lg);
    }


    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        padding: var(--spacing-2xl) var(--spacing-lg);
    }

    .form-card {
        padding: var(--spacing-xl);
    }

    .hero-stats {
        flex-wrap: wrap;
    }
}

/* Mobile Devices (480px - 768px) */
@media (max-width: 768px) {
    :root {
        --h1-size: 2rem;
        --h2-size: 1.5rem;
        --h3-size: 1.25rem;
        --h4-size: 1rem;
        --body-size: 0.95rem;
        --spacing-3xl: 4rem;
    }

    /* Header Mobile */
    .header-container {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .header-logo {
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .header-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--light-bg);
        border-bottom: 1px solid var(--border-color);
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        margin-left: 0;
        z-index: var(--z-mobile-menu);
    }

    .header-nav.active {
        display: flex;
    }

    .nav-link {
        padding: var(--spacing-md);
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        border: none;
        box-shadow: none;
        margin-top: 0;
        background-color: var(--border-light);
        transition: all var(--transition-base);
    }

    .nav-item.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .dropdown-item {
        padding: var(--spacing-md);
        border-left: none;
        padding-left: var(--spacing-lg);
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
        flex-direction: column;
        width: 100%;
        margin-top: var(--spacing-md);
        order: 3;
        flex-basis: 100%;
    }

    .header-right.active {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .header-phone.active {
        display: flex;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        padding: var(--spacing-2xl) 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .subtitle-banner {
        font-size: 1.5rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .stat-separator {
        display: none;
    }

    .form-card {
        padding: var(--spacing-lg);
        margin: 0 var(--spacing-md);
        max-width: 100%;
    }

    .form-title {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-lg);
    }

    .form-input {
        padding: var(--spacing-md);
        font-size: 16px;
    }

    .phone-input-wrapper {
        padding: 0 var(--spacing-md);
    }

    .form-disclaimer {
        font-size: 0.8rem;
    }
}

/* Extra Small Devices (< 480px) */
@media (max-width: 480px) {
    :root {
        --h1-size: 1.5rem;
        --h2-size: 1.25rem;
        --body-size: 0.9rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }

    .header-container {
        padding: var(--spacing-sm);
    }

    .header-nav {
        padding: var(--spacing-md);
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .header-phone {
        font-size: 0.85rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 16px;
    }

    .hero-container {
        padding: var(--spacing-lg) 0;
        gap: var(--spacing-lg);
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .subtitle-banner {
        font-size: 1.25rem;
    }

    .hero-stats {
        font-size: 0.9rem;
    }

    .form-card {
        padding: var(--spacing-lg);
        margin: 0 var(--spacing-sm);
    }

    .form-title {
        font-size: 1.1rem;
    }

    .form-group {
        gap: var(--spacing-sm);
    }

    .form-input {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 16px;
    }

    .dropdown-menu {
        min-width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-toggle {
        display: none;
    }

    .hero {
        min-height: auto;
        page-break-inside: avoid;
    }

    body {
        background-color: white;
    }
}

/* High DPI Screens */
@media (min-resolution: 192dpi) {
    .form-input,
    .location-select {
        font-size: 16px;
    }
}

/* Dark Mode Adjustments */
@media (prefers-color-scheme: dark) {
    .form-input,
    .location-select {
        background-color: #FFFFFF;
        color: #333333;
        border-color: #000000;
    }

    .form-input::placeholder {
        color: #999999;
    }

    .phone-input-wrapper {
        background-color: #FFFFFF;
        border-color: #000000;
    }

    .form-title {
        color: #000000;
        margin-bottom: 30px;
    }
}

/* Landscape Mode */
@media (max-height: 700px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .hero-container {
        padding: var(--spacing-lg);
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-stats {
        margin-top: var(--spacing-sm);
    }

    .form-card {
        padding: var(--spacing-lg);
    }

    .form-title {
        margin-bottom: var(--spacing-lg);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover {
        color: var(--text-dark);
    }

    .nav-link:active {
        color: var(--primary-color);
    }

    .btn:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.98);
    }
}
/* Home V2 Specific Styles */

/* Hero Section - Home V2 */
.hero {
    padding-top: 0rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 40%;
    color: #ffffff;
    z-index: 2;
    background-color: #F6F3EC;
    padding: 2rem;
    border-radius: 20px;
    justify-content: center;
}

.hero-label {
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 500;
}

.hero-title {
    font-size: 46px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
    width: 100%;
    margin-top: 0rem;
    font-weight: 600;
}

.hero-title .highlight {
    color: var(--primary-color);
    display: inline;
}

.hero-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    max-width: 500px;
    margin: 0;
    margin-bottom: 0rem;
}

.hero-video-btn div {
    color: black;
}

.hero-image-container {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    justify-content: space-between;
    align-items: stretch;
    gap: 9px;
    padding: 0 var(--spacing-lg);
}

/* New Process Section Styles */
:root {
  --orange: #F26B0F;
  --orange-dark: #D65A08;
  --navy: #101826;
  --navy-2: #0c1420;
  --ink: #1B1D21;
  --muted: #6B7280;
  --bg: #F7F7F8;
  --card-w: 210px;
  --skew: -8deg;
}

.process-section {
  padding: 80px 0px 0px;
  max-width: 1400px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 {
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.process-header h2 span {
  color: var(--orange);
}

.process-header .underline {
  width: 56px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
  margin: 0 auto 20px;
  position: relative;
}

.process-header .underline::after {
  content: '';
  position: absolute;
  right: -10px;
  top: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.process-header p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.process-timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 20px;
  width: 100%;
}

.process-card {
  position: relative;
  width: 180px;
  flex: 0 0 180px;
  max-width: 180px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgb(197 197 197);
  transition: transform 0.3s ease;
}

.process-card.down {
  margin-top: 118px;
}

.card-shape {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  transform: skewX(var(--skew));
  box-shadow: 0 18px 40px -18px rgba(20, 20, 30, 0.25);
}

.process-card.light .card-shape {
  background: #ffffff;
}

.process-card.dark .card-shape {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
}

.card-content {
  transform: skewX(calc(var(--skew) * -1));
  padding: 20px 0px 0px 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}

.process-card.light .card-title {
  color: var(--ink);
}

.process-card.dark .card-title {
  color: #fff;
}

.card-title-rule {
  width: 26px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 14px;
}

.card-desc {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 156px;
  text-align: center;
}

.process-card.light .card-desc {
  color: var(--muted);
}

.process-card.dark .card-desc {
  color: #B8C0CC;
}

.card-photo {
  margin-top: auto;
  position: relative;
  height: 102px;
  left: -8px;
  width: calc(100% + 76px);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(1) saturate(3.2) hue-rotate(-18deg) brightness(0.85) contrast(1.05);
}

.card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(242, 107, 15, 0.55), rgba(180, 60, 10, 0.35));
  mix-blend-mode: multiply;
}

.badge {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 23px;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  border: 4px solid var(--bg);
  z-index: 3;
}

.badge.orange {
  background: var(--orange);
  top: -50px;
  left: 10px;
}

.badge.navy {
  background: var(--navy);
  bottom: -26px;
  left: 6px;
}

.connector-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connector-svg line {
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 5 6;
  stroke-linecap: round;
}

.connector-svg circle {
  fill: var(--orange);
}

@media (max-width: 1100px) {
  .process-timeline {
    flex-wrap: wrap;
    gap: 70px 24px;
  }

  .process-card.down {
    margin-top: 0;
  }

  .connector-svg {
    display: none;
  }
}
/* Service Detail Page Styles */

.service-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.service-hero .hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero .hero-content {
    text-align: left;
    color: white;
    margin-bottom: 40px;
}

.service-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.service-hero .breadcrumb-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.service-hero .breadcrumb-bottom a {
    color: #F26B0F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-hero .breadcrumb-bottom a:hover {
    color: #ffffff;
}

.service-hero .breadcrumb-divider {
    color: rgba(255, 255, 255, 0.6);
}

.service-hero .breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
}

/* Service Overview Section */
.service-overview {
    padding: 80px 20px;
    background: #ffffff;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.overview-content h2 {
    margin: 0 0 20px;
    color: #1B1D21;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #6B7280;
    margin: 0;
}

.overview-features {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.feature-icon {
}

.feature-item h3 {
    margin: 0 0 10px;
    color: #1B1D21;
}

.feature-item p {
    text-align: left !important;
}

/* Service Process Section */
.service-process {
    padding: 80px 20px;
    background: #F7F7F8;
}

.service-process .container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-process h2 {
    text-align: center;
    margin: 0 0 60px;
    color: #1B1D21;
}

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

.process-step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #F26B0F;
    margin: 0 0 15px;
    opacity: 0.3;
}

.process-step h3 {
    margin: 0 0 10px;
    color: #1B1D21;
}

.process-step p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Service Included Section */
.service-included {
    padding: 80px 20px;
    background: #ffffff;
}

.service-included .container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-included h2 {
    text-align: center;
    margin: 0 0 60px;
    color: #1B1D21;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.included-item h3 {
    margin: 0 0 20px;
    color: #1B1D21;
}

.included-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-item li {
    font-size: 14px;
    color: #6B7280;
    line-height: 2;
    position: relative;
    padding-left: 20px;
}

.included-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F26B0F;
    font-weight: bold;
}

/* Design Styles Section */
.design-styles {
    padding: 80px 20px;
    background: #F7F7F8;
}

.design-styles .container {
    max-width: 1300px;
    margin: 0 auto;
}

.design-styles h2 {
    text-align: center;
    margin: 0 0 60px;
    color: #1B1D21;
}

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

.style-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.style-card h3 {
    margin: 0 0 15px;
    color: #1B1D21;
}

.style-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.service-why-choose {
    padding: 80px 20px;
    background: #ffffff;
}

.service-why-choose .container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-why-choose h2 {
    text-align: center;
    margin: 0 0 60px;
    color: #1B1D21;
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-item h3 {
    margin: 0 0 12px;
    color: #1B1D21;
}

.why-item p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.service-faq {
    padding: 80px 20px;
    background: #ffffff;
}

.service-faq .container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-faq h2 {
    text-align: center;
    margin: 0 0 15px;
    color: #1B1D21;
}

.faq-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #F26B0F;
    box-shadow: 0 4px 12px rgba(242, 107, 15, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: #F9F9F9;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1B1D21;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F0F0F0;
}

.faq-item.active .faq-question {
    background: #F26B0F;
    color: #ffffff;
}

.faq-icon {
    font-size: 24px;
    font-weight: 600;
    color: #F26B0F;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-item.active .faq-icon {
    color: #ffffff;
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 30px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #6B7280;
    background: #fafafa;
}

/* CTA Section */
.service-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F26B0F 0%, #D65A08 100%);
    color: white;
    text-align: center;
}

.service-cta .container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-cta h2 {
    margin: 0 0 15px;
    letter-spacing: -0.5px;
}

.service-cta p {
    font-size: 18px;
    margin: 0 0 30px;
    opacity: 0.95;
}

.service-cta .btn {
    font-size: 16px;
    padding: 15px 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        padding: 80px 20px;
        min-height: auto;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .service-hero-subtitle {
        font-size: 16px;
    }

    .overview-content h2 {
        font-size: 32px;
    }

    .overview-content p {
        font-size: 14px;
    }

    .service-process h2,
    .service-included h2,
    .design-styles h2,
    .service-why-choose h2,
    .service-faq h2,
    .service-cta h2 {
        font-size: 32px;
    }

    .process-steps,
    .included-grid,
    .styles-grid,
    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 20px;
        font-size: 13px;
    }
}
/* Services Page Styles - New Design */

/* Services Hero Section */
.services-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.services-hero .hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero .hero-content {
    text-align: left;
    color: white;
    margin-bottom: 40px;
}

.services-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.services-hero .breadcrumb-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.services-hero .breadcrumb-bottom a {
    color: #F26B0F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-hero .breadcrumb-bottom a:hover {
    color: #ffffff;
}

.services-hero .breadcrumb-divider {
    color: rgba(255, 255, 255, 0.6);
}

.services-hero .breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Main Section */
.services-section {
    padding: 80px 20px;
    background: #ffffff;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* New Header Style */
.services-header-new {
    text-align: center;
    margin-bottom: 80px;
}

.services-label-new {
    font-size: 12px;
    color: #F26B0F;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.services-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #1B1D21;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* New Services Grid - 6 Cards in 3x2 */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* New Service Card */
.service-card-new {
    background: #F5F5F5;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    background: #EFEFEF;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Service Icon - New */
.service-icon-new {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #1B1D21;
}

.service-icon-new svg {
    width: 100%;
    height: 100%;
}

/* Service Title - New */
.service-card-title-new {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #1B1D21;
    line-height: 1.3;
}

/* Service Description - New */
.service-card-description-new {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0 0 24px;
    flex-grow: 1;
}

/* View Services Button */
.service-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1B1D21;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.service-view-btn:hover {
    background: #333333;
    gap: 16px;
}

.service-view-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Our Real Services Section */
.our-services-section {
    padding: 80px 20px;
    background: #F9F9F9;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    color: #1B1D21;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
}

.services-intro p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Categories Grid */
.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-category {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(242, 107, 15, 0.1);
}

.category-header {
    margin-bottom: 24px;
    border-bottom: 2px solid #F26B0F;
    padding-bottom: 16px;
}

.category-header h3 {
    color: #1B1D21;
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.service-list li {
    font-size: 14px;
    color: #6B7280;
    padding: 12px 0;
    line-height: 1.6;
    border-bottom: 1px solid #E5E7EB;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: "";
    display: none;
}

.category-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #F26B0F 0%, #D65A08 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.category-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(242, 107, 15, 0.3);
}

/* Why Choose Services Section */
.why-choose-services {
    padding: 80px 20px;
    background: #F7F7F8;
}

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

.why-choose-header h2 {
    margin: 0 0 10px;
    color: #1B1D21;
}

.why-choose-header p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

.why-choose-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-choose-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-4px);
}

.why-choose-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.why-choose-card h3 {
    margin: 0 0 10px;
    color: #1B1D21;
}

.why-choose-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Services CTA Section */
.services-cta {
    padding: 1rem;
    background: linear-gradient(135deg, #F26B0F 0%, #D65A08 100%);
    color: white;
    text-align: center;
    width: 1300px;
    margin: auto;
    border-radius: 20px;
}

.services-cta .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #F26B0F 0%, #D65A08 100%);
    border-radius: 20px;
}

.services-cta h2 {
    margin: 0 0 15px;
    letter-spacing: -0.5px;
}

.services-cta p {
    font-size: 18px;
    margin: 0 0 30px;
    opacity: 0.95;
}

.services-cta .btn {
    font-size: 16px;
    padding: 15px 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 36px;
    }

    .services-hero-subtitle {
        font-size: 16px;
    }

    .services-main-title {
        font-size: 36px;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-header h2 {
        font-size: 32px;
    }

    .services-cta h2 {
        font-size: 32px;
    }
}

/* Footer Company Details */
.footer-company {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.5rem 0;
}

.footer-address {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0.5rem 0 1rem 0;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    color: #ffffff;
}

.whatsapp-sticky:hover {
    background-color: #20ba5c;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-sticky i {
    font-size: 24px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-sticky i {
        font-size: 20px;
    }
}






