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

/* Cross-browser compatibility */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

/* Ensure consistent rendering across browsers */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--bg-card);
    background-color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

:root {
  --brand-primary: #2E5F43;
  --brand-hover: #3b7c5a;
  --brand-light: #59a982;
  --text-dark: #f0fdf4;
  --text-light: #cce3d7;
  --bg-dark: #0f1f17;
  --bg-card: #1c3a2b;
  --border-light: #2E5F43;
  --highlight-yellow: #ffd700;
}

/* Navigation */
.navbar {
    background: var(--bg-card);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--brand-primary);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.brand-link {
    text-decoration: none;
}

.nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 2rem;
}

.nav-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}
.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    
}
.nav-link:hover {
    color: var(--brand-primary);
}
.nav-link.active {
    color: var(--text-dark);
    border-bottom: 2px solid var(--brand-primary);
}
.design-outline {
    background-color: white;
    color: var(--bg-card);
    padding: 0.5rem 1.2rem;
    border-radius: 0px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.white-text {
  color: white;
 font-size: 0.8em;
}
.underline {
  text-decoration: underline;
}
.design-outline:hover {
    background-color: var(--highlight-yellow);
    color: var(--bg-card);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    margin-left: 1rem;
}
#email a {
  color: white;
  text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}
.errorbtn {
    background: var(--bg-card);
    color: white
}
.ceo {
  font-size: 0.5em;
  font-weight: 600;
  margin-top: -0.5rem;
  display: block;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("Images/background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.75) 0%, rgba(36, 59, 85, 0.6) 50%, rgba(46, 95, 67, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
   
 
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
 
    width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}
.hero-main {
    display: block;

}
.hero-sub {
    color: var(--highlight-yellow);
    
    display: block;
  
    font-size: 2.5rem;
    margin-top: 0.5rem;
}
.hero-description {
  
    
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-primary {
    background: var(--highlight-yellow);
    color: var(--bg-card);
    font-weight: 1000
}
.btn-primary:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 95, 67, 0.3);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background: white;
    color: var(--brand-primary);
}

section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-card);
    margin-bottom: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
}

.section-description {
    font-size: 1.1rem;
    color: var(--bg-card);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-description {
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-description {
        font-size: 0.9rem;
    }
}
.section-header {
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 1.5rem;
    }
}
.white-text {
    color: white;
}

/* Expertise Section */

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.expertise-content .section-title {
    text-align: left;
}
.expertise-content .section-description {
    text-align: left;
    margin: 0 0 2rem 0;
}
.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.feature {
    display: flex;
    gap: 1rem;
}
.feature-icon {
    background: var(--brand-primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-content h3 {
    color: var(--bg-card);
    font-size: 1.1rem;
    font-weight: 600;
}
.feature-content p {
    color: var(--bg-card);
}
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.expertise-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0px 7px 12px #2e5f4375;
}
.img-2 {
    margin-top: 2rem;
}

/* Services Section */
.services{
    background: var(--bg-card);
    padding: 3rem 0 5rem 0;
}

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

@media (max-width: 480px) {
    .services {
        padding: 1.5rem 0 2rem 0;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1rem;
    }
}
.service-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 0px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1rem;
        text-align: left;
    }
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.service-icon {
    background: var(--bg-dark);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
}

@media (max-width: 768px) {
    .service-icon {
        width: 48px;
        height: 48px;
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 40px;
        height: 40px;
        margin: 0 0 0.75rem 0;
    }
}
.service-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}
.service-description {
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .service-description {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
}

.autreservices {
    grid-column: 2 / 3;
    justify-self: center;
}

@media (max-width: 768px) {
    .autreservices {
        grid-column: 1 / -1;
        justify-self: stretch;
    }
}

/* Trust Section */

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.trust-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.trust-item.reverse {
    direction: rtl;
}
.trust-item.reverse > * {
    direction: ltr;
}
.trust-title {
    color: var(--bg-card);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.trust-description {
    color: var(--bg-card);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.trust-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.trust-features li {
    color: var(--bg-card);
    font-weight: 500;
}
.trust-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0px 7px 12px #2e5f4375;
}

/* Contact Section */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 1px solid var(--border-light);
}
.contact-icon {
    background: var(--brand-primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-details h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.contact-details p {
    color: white;
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 1px solid var(--border-light);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-light);
    border-radius: 0px;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
    color: var(--bg-card);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    box-sizing: border-box;
}

/* Custom dropdown icon for select elements */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231c3a2b' 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 12px center;
    background-size: 16px;
    padding-right: 40px;
}

#femail a {
    color: #ccc;
    text-decoration: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    -webkit-box-shadow: 0 0 0 3px rgba(46, 95, 67, 0.1);
    box-shadow: 0 0 0 3px rgba(46, 95, 67, 0.1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--brand-primary);
    position: relative;
    z-index: 1;
    pointer-events: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 3px;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.checkbox-group input[type="checkbox"]:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.checkbox-group label {
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    margin: 0;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--bg-card); 
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-light);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-title {
    color: var(--brand-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-subtitle {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    color: #ccc;
    transition: color 0.3s ease;
}
.social-link:hover {
    color: var(--brand-primary);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--brand-primary);
}
.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display:block;
    align-items: center;
    gap: 0.5rem;
}
.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copyright p {
    color: #ccc;
    margin: 0;
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: var(--brand-primary);
}

.footer-design {
    margin-top: 1rem;
    padding-top: 1rem;

    text-align: center;
}

.footer-design p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-design a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-design a:hover {
    color: var(--brand-primary) !important;
}

/* Responsive Design */
/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-sub {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 2rem !important;
    }
    
   
    
}

/* Tablets and large phones */
@media (max-width: 768px) {
    .hamburger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    
    .nav-brand {
        flex-shrink: 0;
    }
    
    .nav-brand .brand-logo {
        height: 45px !important;
        width: auto;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        background-color: var(--bg-card);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-actions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1rem;
        margin-left: auto;
    }
    
    .nav-actions .design-outline {
        font-size: 0.9rem;
        padding: 0.5rem;
    
    }
    
    .nav-actions .design-outline span {
        display: none;
    }
    
    .nav-actions .design-outline svg {
        width: 25px;
        height: 25px;
    }
    
    .nav-menu.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-sub {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .expertise-grid,
    .trust-item,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .autreservices {
        grid-column: 1 / -1 !important;
        
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .img-2 {
        margin-top: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Contact page responsive */
    .contact-main {
        padding: 2rem 0 !important;
    }
    
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-sidebar {
        order: 2;
    }
    
    .contact-form-section {
        order: 1;
    }
    
    .contact-hero-title {
        font-size: 2.5rem !important;
    }
    
    .contact-hero-description {
        font-size: 1rem !important;
    }
    
    .contact-form-card {
        padding: 1.5rem !important;
    }
    
    .contact-form-card h2 {
        font-size: 1.5rem !important;
    }
    
    .contact-info-card,
    .why-choose-card {
        padding: 1.5rem !important;
    }
    
    .form-actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .form-actions .btn {
        min-width: auto !important;
        width: 100% !important;
    }
    
    .trust-indicators {
        padding: 2rem 0 !important;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .trust-number {
        font-size: 2rem !important;
    }
    
    .trust-label {
        font-size: 0.9rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-title {
        font-size: 1.5rem;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-brand {
        flex-shrink: 0;
    }
    
    .nav-brand .brand-logo {
        height: 35px !important;
        width: auto;
    }
    
    .nav-actions .design-outline {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .nav-actions .design-outline span {
        display: none;
    }
    .nav-actions .design-outline svg {
        width: 20px;
        height: 20px;
    }
   
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-sub {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Contact page responsive for small screens */
    .contact-main {
        padding: 1.5rem 0 !important;
    }
    
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .contact-hero-title {
        font-size: 2rem !important;
    }
    
    .contact-hero-description {
        font-size: 0.9rem !important;
    }
    
    .contact-form-card {
        padding: 1rem !important;
    }
    
    .contact-form-card h2 {
        font-size: 1.3rem !important;
    }
    
    .contact-info-card,
    .why-choose-card {
        padding: 1.5rem !important;
    }
    
    .contact-info-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.5rem !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .contact-info-icon {
        align-self: center !important;
        width: 40px !important;
        height: 40px !important;
        margin: 0 auto !important;
    }
    
    .contact-info-content {
        text-align: center !important;
        width: 100% !important;
    }
    
    .contact-info-content h4 {
        font-size: 1rem !important;
        text-align: center !important;
    }
    
    .contact-info-content p {
        font-size: 0.9rem !important;
        text-align: center !important;
    }
    
    .contact-info-content small {
        text-align: center !important;
        display: block !important;
    }
    
    .trust-indicators {
        padding: 1.5rem 0 !important;
    }
    
    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .trust-number {
        font-size: 1.8rem !important;
    }
    
    .trust-label {
        font-size: 0.85rem !important;
    }
    
    .social-links {
        justify-content: center !important;
        align-items: center !important;
    }
  
    .service-card,
    .contact-item,
    .contact-form-container {
        padding: 1.5rem;
        width: 100% !important;
        min-width: 100% !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    .service-card {
        width: 100% !important;
        min-width: 100% !important;
        padding: 1.5rem !important;
    }
    
    .autreservices {
        grid-column: 1 / -1 !important;
      
    }
   

}

/* Animation Classes */
.fade-in {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.toast.success {
    background: #10b981;
}
.toast.error {
    background: #ef4444;
}
.toast.show {
    transform: translateX(0);
}

/* Contact Page Specific Styles */
.contact-hero {
    background-repeat: no-repeat;
    background-position: center;
    color: var(--bg-card);
    margin-top: 80px;
    object-fit: fill;
}
.contact-hero-content {
    text-align: center;
}
.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-hero-description {
    color: var(--bg-card);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}
.contact-main {
    padding: 1rem 0;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-info-card,
.why-choose-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 1px solid var(--border-light);
}
.contact-info-card h2,
.why-choose-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-info-icon {
    background: var(--brand-primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.contact-info-content p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}
.contact-info-content small {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}
.why-choose-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.why-choose-list li {
    color: var(--text-light);
    font-weight: 500;
}
.contact-form-section {
    background: var(--bg-card);
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 1px solid var(--border-light);
}
.contact-form-card {
    padding: 2.5rem;
}
.contact-form-card h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}
.contact-form-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-form-detailed label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.form-actions .btn {
    flex: 1;
    min-width: 200px;
}
.trust-indicators {
    background: var(--brand-primary);
    color: white;
    padding: 3rem 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.trust-indicator {
    text-align: center;
}
.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}
.trust-label {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}
.brand-logo {
    height: 60px;
    width: auto;
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
    pointer-events: auto;
}

.g-recaptcha > div {
    margin: 0 auto;
}

/* Ensure form elements are above reCAPTCHA */
.form-group {
    position: relative;
    z-index: 1;
}

/* 404 Error Page Styles */
.error-404 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.error-number {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.error-suggestions ul li a:hover {
    color: var(--brand-primary) !important;
}

/* Responsive 404 page */
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem !important;
    }
    
    .error-404 h1 {
        font-size: 2rem !important;
    }
    
    .error-404 p {
        font-size: 1rem !important;
    }
    
    .error-actions {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .error-actions .btn {
        width: 100% !important;
        max-width: 300px !important;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 4rem !important;
    }
    
    .error-404 h1 {
        font-size: 1.5rem !important;
    }
    
    .error-404 p {
        font-size: 0.9rem !important;
    }
    
    .error-suggestions {
        padding: 1.5rem !important;
    }
}