/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables - Golden Ratio and Color Scheme */
:root {
    /* Golden Ratio (φ = 1.618) */
    --golden-ratio: 1.618;
    
    /* Base Font Size */
    --base-font-size: 16px;
    
    /* Typography Scale - Golden Ratio Only */
    --font-size-xs: calc(var(--base-font-size) * 0.618); /* 10px */
    --font-size-sm: calc(var(--base-font-size) * 0.764); /* 12px */
    --font-size-base: var(--base-font-size); /* 16px */
    --font-size-lg: calc(var(--base-font-size) * var(--golden-ratio)); /* 26px */
    --font-size-xl: calc(var(--base-font-size) * 2.618); /* 42px */
    --font-size-2xl: calc(var(--base-font-size) * 4.236); /* 68px */
    
    /* Color Palette - Only 3 Colors */
    --color-green: #515739;
    --color-orange: #ff6e39;
    --color-base: #ffffff;
    
    /* Fixed Values */
    --card-padding: 16px;
    --border-radius: 12px;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: 0.3s ease;
}

/* Base Typography */
body {
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #000000;
    background-color: var(--color-base);
    overflow-x: hidden;
}

/* Typography Scale */
h1, .h1 {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000;
}

h2, .h2 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #000000;
}

h3, .h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #000000;
}

h4, .h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #000000;
}

p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #000000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

/* Alternative section backgrounds - excluding hero, header, footer */
.about {
    background-color: #fff;
}

.services {
    background-color: #fbecd4;
}

.policies {
    background-color: #fff;
}

/* Policies Grid */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.policy-card {
    position: relative;
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    height: 400px;
    cursor: pointer;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.policy-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.policy-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.policy-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.policy-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    z-index: 2;
    color: white;
}

.policy-card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    line-height: 1.3;
}

.policy-card-description {
    font-size: var(--font-size-sm);
    line-height: 1.5;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.policy-card-link {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-orange);
    text-decoration: none;
    transition: var(--transition);
}

.policy-card:hover .policy-card-link {
    color: white;
    transform: translateX(5px);
}

/* Responsive for Policies */
@media (max-width: 1024px) {
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .policy-card {
        height: 350px;
    }
}

.why-choose {
    background-color: #fff;
}

.customers {
    background-color: #fbecd4;
}

.faq {
    background-color: #fbecd4;
}

.contact {
    background-color: #fff;
}

.section-title {
    text-align: center;
    color: #000000;
    margin-bottom: 12px;
    font-size: var(--font-size-xl);
}

.section-subtitle {
    text-align: center;
    color: #000000;
    font-size: var(--font-size-base);
    margin-bottom: 40px;
}

/* Header */
.header {
    background-color: var(--color-green) !important;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}


.logo-icon{
 width: 30px;
 height: 40px;
 background: url('../images/investlandLogo.webp') no-repeat center center;
 background-size: contain;
 display: flex;
}


.logo-text {
    color: white;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: var(--transition);
    position: relative;
    padding: 21px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-orange);
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--color-orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 2px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/investland.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 16px;
}

.hero-title {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.hero-form {
    background-color: #fff;
    border-radius:12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.form-group {
    flex: 1;
    min-width: 200px;
    border-right:solid 1px #f1f1f1;
    padding:12px 16px;
}

@media screen and (max-width: 768px) {
    .form-group {
        border:solid 1px #f1f1f1;
        border-radius: 8px;
        margin-bottom: 8px;
    }
}

.form-group:last-child {
    border-right: none;
}

.form-group .field-error {
  text-align: left;
  border-top: solid 1px #e74c3c;
  padding-top: 4px;
  margin-top: 4px;
  font-size: var(--font-size-sm);
  color: #e74c3c;
}


.form-group input,
.form-group select {
    width: 100%;
    height: 40px;
    padding: 0px;
    border: none;
    font-size: var(--font-size-base);
    transition: var(--transition);
    background-color: white;
    color: #000000;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border: none;
}

.btn-primary {
    background-color: var(--color-orange);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 0px 12px 12px 0px;
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    min-width: 140px;
}

@media screen and (max-width: 768px) {
    .btn-primary {
        width: 100%;
        border-radius: 8px;
    }
}

/* About Section */
.about {
    background-color: var(--color-base);
    padding: 80px 0;
}

.about .section-subtitle{
 text-align: left !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-map {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-radius:12px;
    background: #f5f5f5;
}

.about-map img {
    width: 100%;
    height: auto;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-description h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-description p {
    font-size: var(--font-size-base);
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-description ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-description li {
    font-size: var(--font-size-base);
    color: #000000;
    line-height: 1.6;
    margin-bottom: 12px;
}

.about-description li strong {
    color: var(--color-green);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background-color: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--color-orange);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.stat-description {
    font-size: var(--font-size-sm);
    color: #000000;
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    padding: 20px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.service-card .btn-primary {
    width: auto;
    margin: 0 auto;
    padding: 12px 24px;
    border-radius: 8px;
}

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

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

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

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

.service-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow);
    z-index: 2;
}

.service-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.service-description {
    font-size: var(--font-size-base);
    color: #000000;
    line-height: 1.6;
    flex: 1;
}

/* Why Choose Us Section */
.why-choose {
    background-color: var(--color-base);
    color: #000000;
    padding: 80px 0;
}

.counter-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.counter-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.counter-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.counter-card:hover .counter-icon {
    animation: rotate 1s ease-in-out;
}

@keyframes rotate {
    0% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}


.counter-number {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--color-green);
}

.counter-label {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #000000;
}

.customers-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.customer-logo {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-green);
    transition: var(--transition);
    margin: 0 auto;
}

.customer-logo:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    transform: scale(1.1);
}

.why-choose .section-title {
    color: #000000;
    font-size: var(--font-size-xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.why-choose .section-subtitle {
    color: #000000;
    font-size: var(--font-size-base);
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.feature-description {
    font-size: var(--font-size-sm);
    color: #000000;
    line-height: 1.5;
}

.stats-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.summary-stat {
    padding: 20px;
}

.summary-number {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--color-orange);
    margin-bottom: 8px;
    line-height: 1;
}

.summary-label {
    font-size: var(--font-size-base);
    color: #000000;
    font-weight: 500;
}

/* Customers Section */
.customers {
    padding: 80px 0;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.customer-card {
    background-color: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.customer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.customer-initial {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-green), var(--color-orange));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
}

.customer-name {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #000000;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-list {
    max-width: 100%;
    margin: 0;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 16px;
    border-radius: var(--border-radius);
    background: white;
    transition: var(--transition);
}

.faq-item:last-child {
    margin-bottom: 0;
}


.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #000000;
    transition: var(--transition);
}


.faq-text {
    flex: 1;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #000000;
}

.faq-icon {
    font-size: 24px;
    color: var(--color-orange);
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    padding: 0 24px 24px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: none;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    display: block;
}

.faq-answer p {
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size-sm);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.contact-map {
    height: 310px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000;
    position: relative;
    z-index: 2;
    background:rgba(0, 0, 0, 0.5);
}

.map-placeholder h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 8px;
    color: #fff;
}

.map-placeholder p {
    font-size: var(--font-size-sm);
    margin-bottom: 20px;
    color: #fff;
}

.map-actions {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.map-link {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid var(--color-orange);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: var(--font-size-sm);
}

.map-link:hover {
    background-color: var(--color-orange);
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-orange);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: var(--font-size-sm);
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: var(--color-green);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
   width: 30px;
   height: 40px;
   background: url('../images/investlandLogo.webp') no-repeat center center;
   background-size: contain;
   display: flex;
}

.footer-logo-i {
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.footer-logo-text {
    color: white;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-description {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    color: var(--color-orange);
    font-size: 16px;
}

.footer-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-orange);
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: var(--font-size-sm);
}

.social-link:hover {
    background-color: var(--color-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright,
.footer-license {
    font-size: var(--font-size-sm);
    color: white !important;
}

.footer-copyright p,
.footer-license p {
    color: white !important;
}

/* Mobile Menu Styles */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    box-shadow: var(--shadow);
    padding: 20px;
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 16px;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-group {
        min-width: auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        min-height: 320px;
    }
    
    .customers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .nav.active {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .hero-form {
        padding: 20px;
        flex-direction: column;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        min-height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .customers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .counter-cards {
        grid-template-columns: 1fr;
    }
    
    .customers-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* @media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 20px 12px;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .stats-summary {
        grid-template-columns: 1fr;
    }
    
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .counter-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .customers-logos {
        grid-template-columns: repeat(4, 1fr);
    }
} */

/* Icon Sprites */
.sprite {
    display:flex;
    background: url('../images/sprite.webp') no-repeat;
    background-size: 190px 83px;
}

.sprite.icon-experience {
 width: 40px;
 height: 40px;
 background-position: -6px -6px;
}

.sprite.icon-verified {
 width: 42px;
 height: 40px;
 background-position: -52px -6px;
}

.sprite.icon-people {
 width: 40px;
 height: 40px;
 background-position: -99px -6px;
}

.sprite.icon-shield {
 width: 42px;
 height: 40px;
 background-position: -145px -6px;
}

.sprite.icon-location {
 width: 15px;
 height: 16px;
 background-position: -11px -59px;
}

.sprite.icon-phone {
 width: 15px;
 height: 15px;
 background-position: -31px -59px;
}

.sprite.icon-clock{
 width: 20px;
 height: 15px;
 background-position: -50px -59px;
}



/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}
