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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-color: #5c483a;
    --primary-dark: #4a3a2e;
    --primary-light: #8b7355;
    --secondary-color: #f8f9fa;
    --accent-color: #007bff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-light: #e9ecef;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
    --danger: #dc3545;
    --pram-color: #e74c3c;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-strong: 0 5px 25px rgba(0,0,0,0.15);
}

/* Google Translate Styling */
.language-selector {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

#google_translate_element {
    background: transparent !important;
}

#google_translate_element .goog-te-gadget {
    background: none !important;
    border: none !important;
    font-family: 'Inter', sans-serif !important;
}

#google_translate_element .goog-te-gadget-simple {
    background: var(--secondary-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 20px !important;
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
    color: var(--primary-color) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

#google_translate_element .goog-te-gadget-simple:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value {
    color: inherit !important;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span {
    color: inherit !important;
}

/* Hide Google Translate banner */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Style the dropdown */
#google_translate_element .goog-te-combo {
    background: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 15px !important;
    padding: 8px 12px !important;
    font-family: 'Inter', sans-serif !important;
    color: var(--primary-color) !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

#google_translate_element .goog-te-combo:hover {
    background: var(--secondary-color) !important;
    border-color: var(--primary-dark) !important;
}

#google_translate_element .goog-te-combo option {
    background: var(--white) !important;
    color: var(--text-dark) !important;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-strong);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo-main {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
    background: none !important;
    border: none !important;
    filter: contrast(1.4) brightness(1.1) saturate(1.2);
}

.logo-main:hover {
    transform: scale(1.05);
    filter: contrast(1.5) brightness(1.2) saturate(1.3);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}

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

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

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

.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-logo-showcase {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.hero-logo {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    background: none !important;
    border: none !important;
    filter: contrast(1.6) brightness(1.2) saturate(1.3) drop-shadow(3px 3px 8px rgba(0,0,0,0.15));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
}

.location-highlight {
    color: var(--primary-color);
    font-weight: 600;
    background: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
    margin: 0 5px;
    box-shadow: var(--shadow);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-item i {
    font-size: 1.2rem;
}

.trust-item:nth-child(2) i {
    color: var(--pram-color);
}

.trust-item:nth-child(3) i {
    color: var(--info);
}

.trust-item:nth-child(1) i,
.trust-item:nth-child(4) i {
    color: var(--success);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.service-card.new-service {
    border: 2px solid var(--pram-color);
    background: linear-gradient(135deg, #ffffff 0%, #fdf2f2 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.new-service .service-icon {
    background: linear-gradient(135deg, var(--pram-color), #c0392b);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--pram-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* PRAM Description Box */
.pram-description {
    background: #fef9e7;
    border-left: 4px solid var(--warning);
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.pram-description h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.pram-description p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.systems-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.system-badge {
    background: var(--primary-light);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.system-badge.premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: var(--shadow);
}

.system-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 2;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}

.service-features i {
    color: var(--success);
    font-size: 1rem;
    margin-top: 2px;
    min-width: 16px;
}

.new-service .service-features i {
    color: var(--pram-color);
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--secondary-color);
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.partner-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-left-color: var(--primary-dark);
}

.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.partner-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
}

.partner-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.partner-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.partner-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty {
    background: var(--primary-light);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.company-logo-inline {
    margin: 20px 0;
    text-align: left;
}

.inline-logo {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    background: none !important;
    border: none !important;
    filter: contrast(1.4) brightness(1.1) saturate(1.2);
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-highlights {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.highlight-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.highlight-item:nth-child(2) i {
    color: var(--pram-color);
}

.highlight-item:nth-child(3) i {
    color: var(--info);
}

.highlight-item h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1.1rem;
}

.highlight-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-strong);
    border: 2px solid var(--primary-light);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-logo {
    text-align: center;
    margin-bottom: 30px;
}

.contact-logo-img {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    background: none !important;
    border: none !important;
    filter: contrast(1.5) brightness(1.2) saturate(1.2);
}

.contact-info h3,
.contact-form h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.contact-item.highlight-contact {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.contact-item.highlight-contact h4,
.contact-item.highlight-contact p,
.contact-item.highlight-contact a {
    color: var(--white);
}

.contact-item.highlight-contact i {
    color: var(--warning);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item small {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(92, 72, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

.footer-logo-section {
    text-align: left;
}

.footer-logo-main {
    height: 60px;
    width: auto;
    max-width: 250px;
    margin-bottom: 20px;
    object-fit: contain;
    background: none !important;
    border: none !important;
    filter: brightness(0) invert(1) contrast(1.4);
}

.footer-logo-section h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-logo-section p {
    color: #adb5bd;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-systems {
    background: var(--primary-color);
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.footer-systems small {
    color: var(--white);
    font-weight: 500;
}

.footer-certification {
    background: var(--pram-color);
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.footer-certification small {
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

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

.footer-contact p {
    color: #adb5bd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
    font-size: 1.2rem;
}

.emergency-notice {
    background: var(--warning);
    color: var(--text-dark);
    padding: 10px 15px;
    border-radius: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #495057;
    color: #adb5bd;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-strong);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        margin: 15px 0;
    }
    
    .language-selector {
        margin: 15px 0;
    }
    
    .logo-main {
        height: 50px;
        max-width: 200px;
    }
    
    .hero-logo {
        height: 80px;
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo-section {
        text-align: center;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.partner-card,
.stat-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Logo enhancement */
.logo-main,
.hero-logo,
.inline-logo,
.contact-logo-img {
    transition: all 0.3s ease;
    background-color: transparent !important;
    background-image: none !important;
    background: none !important;
}

.logo-main:hover,
.hero-logo:hover,
.inline-logo:hover,
.contact-logo-img:hover {
    transform: scale(1.05);
}