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

:root {
    --primary-color: #5cb85c;
    --primary-dark: #449d44;
    --primary-light: #7bc87b;
    --secondary-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
    
    /* Dark Grey Palette - Professional & Modern */
    --grey-dark: #3a3a3a;
    --grey-medium: #5a5a5a;
    --grey-light: #7a7a7a;
    --grey-lighter: #e8e8e8;
    --grey-bg: #f5f5f5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition);
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    transition: var(--transition);
}

.header.scrolled .header-top {
    max-height: 0;
    padding: 0;
    overflow: hidden;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-link.active {
    background: rgba(255, 255, 255, 0.2);
}

.lang-separator {
    color: var(--white);
    opacity: 0.5;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.contact-info a:hover {
    opacity: 0.8;
}

.navbar {
    background: var(--grey-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.header.scrolled .navbar {
    box-shadow: var(--shadow-lg);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 48px;
    transition: var(--transition);
    margin-bottom: -6px;
    width: 201px;
}

.header.scrolled .logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Hero Section */
.hero {
    margin-top: 120px;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.85) 0%, rgba(58, 58, 58, 0.88) 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
    color: var(--white);
    padding: 40px 0;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-secondary {
    background: var(--grey-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--grey-medium);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.hero-dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 10px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(92, 184, 92, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(92, 184, 92, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(92, 184, 92, 0.05) 0%, transparent 70%);
    transition: var(--transition);
}

.stat-card:hover::before {
    transform: scale(1.2);
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.services::before {
    content: '🛡️';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 200px;
    opacity: 0.02;
    pointer-events: none;
    animation: float 25s ease-in-out infinite;
}

.services::after {
    content: '🔒';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 180px;
    opacity: 0.02;
    pointer-events: none;
    animation: float 20s ease-in-out infinite reverse;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 34px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--grey-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--grey-dark) 0%, var(--primary-color) 50%, var(--grey-dark) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--grey-lighter);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--grey-dark) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(92, 184, 92, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(92, 184, 92, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.certifications {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.certifications img {
    height: 60px;
    width: auto;
    border-radius: 5px;
}

.footer-certifications img {
    max-width: 95px;
    padding: 5px;
}

.footer-certifications {
    margin: 0 auto;
  text-align: center;
  margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .header.scrolled .nav-menu {
        top: 68px;
        height: calc(100vh - 68px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 0;
        color: var(--primary-color);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--primary-color);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        background: var(--bg-light);
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
    }
    
    .hero {
        margin-top: 41px;
        height: auto;
        min-height: 400px;
    }
    
    .header.scrolled + .hero {
        margin-top: 68px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        text-align: center;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-controls {
        bottom: 20px;
        gap: 15px;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .breadcrumbs {
        margin-top: 78px;
    }
    
    .header.scrolled + * .breadcrumbs,
    .breadcrumbs {
        margin-top: 78px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-buttons {
        gap: 12px;
        display:block;
    }
    
    .hero-buttons a {
        margin-bottom: 13px;
    }
}


/* Page Header */
.page-header {
    margin-top: 120px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 40%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 50%, #ffffff 100%);
}

.about-content::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(92, 184, 92, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(92, 184, 92, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.about-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.about-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    margin-bottom: 80px;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-detail-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-detail-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-detail-text ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.service-detail-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.service-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(92, 184, 92, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(92, 184, 92, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, var(--grey-bg) 0%, #ffffff 100%);
    border-radius: 10px;
    transition: var(--transition);
    border-left: 4px solid var(--grey-lighter);
}

.contact-info-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-light);
    margin: 0;
}

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

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

.certifications-contact {
    margin-top: 40px;
}

.certifications-contact h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header {
        margin-top: 78px;
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 15px;
    }
    
    .about-grid,
    .service-detail-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-content.reverse {
        direction: ltr;
    }
    
    .service-detail-text h2 {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}


/* Service Page Styles */
.service-page-content {
    padding: 80px 0;
    position: relative;
    background: 
        linear-gradient(180deg, #ffffff 0%, var(--bg-light) 50%, #ffffff 100%);
}

.service-page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(92, 184, 92, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(92, 184, 92, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(92, 184, 92, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.service-intro {
    margin-bottom: 80px;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-intro-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.highlight-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-intro-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-features {
    margin-bottom: 80px;
}

.service-features h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
}

.service-features .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--grey-bg) 100%);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--grey-lighter);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), var(--primary-color));
    border-radius: 15px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-radius: 15px;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--grey-dark);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 50%, var(--primary-color) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--grey-lighter);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.cta-section h2,
.cta-section p,
.cta-section .btn {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Responsive for Service Pages */
@media (max-width: 768px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-intro-text h2,
    .service-features h2 {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 15px;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 100%;
    }
}


/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

body.loaded::before {
    opacity: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    background: var(--grey-bg);
    margin-top: 120px;
    border-bottom: 1px solid var(--grey-lighter);
    padding:0;
}

.breadcrumbs-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumbs-list li::after {
    content: '/';
    color: var(--text-light);
}

.breadcrumbs-list li:last-child::after {
    display: none;
}

.breadcrumbs-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs-list a:hover {
    color: var(--primary-color);
}

.breadcrumbs-list li:last-child {
    color: var(--primary-color);
    font-weight: 500;
}

/* Improved Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        background: var(--white);
        box-shadow: var(--shadow-lg);
        animation: slideIn 0.3s ease;
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--grey-bg) 0%, var(--white) 50%, var(--grey-bg) 100%);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border-top: 3px solid var(--grey-lighter);
}

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

.testimonial-quote {
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    fill: #ffc107;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 50%, var(--primary-color) 100%);
    padding: 60px 0;
    color: var(--white);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
}

.newsletter-form button {
    padding: 15px 35px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
    }
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

/* Pulse Animation for CTA */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(92, 184, 92, 0);
    }
}

.btn-primary.pulse {
    animation: pulse 2s infinite;
}

/* ===================================
   Map Section
   =================================== */
.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* Contact Info */
.contact-info-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.contact-icon svg {
    color: var(--white);
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-text p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.certifications-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.certifications-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.certifications-contact .certifications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: #77cfa2;
    padding-bottom: 18px;
    padding-left: 9px;
    padding-right: 9px;
}

.certifications-contact .certifications img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form,
    .contact-info-wrapper {
        padding: 20px 12px;
    }
    
    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        font-size: 26px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Mobile Responsive Styles - General */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header & Navigation */
    .header-top {
        padding: 8px 0;
    }
    
    .contact-info {
        gap: 15px;
        font-size: 13px;
    }
    
    .navbar-content {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--grey-dark);
        flex-direction: column;
        padding: 80px 0 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 10000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--primary-color);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 400px;
        padding: 10px 0;
    }
    
    .dropdown-menu a {
        padding: 12px 25px 12px 45px;
        color: var(--white);
        background: transparent;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 10001;
        position: relative;
    }
    
    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: var(--white);
        transition: var(--transition);
        border-radius: 2px;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero Section */
    .hero {
        height: 500px;
        margin-top: 41px;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        padding: 30px 20px 100px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
        text-align: center;
    }
    
    .hero-controls {
        bottom: 20px;
        gap: 15px;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dot.active {
        width: 28px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Service Page Content */
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-intro-image {
        order: -1;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .certifications {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    /* Typography */
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    /* Header */
    .header-top {
        padding: 8px 0;
    }
    
    .header-top-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .contact-info a {
        font-size: 12px;
    }
    
    .contact-info a:first-child {
        display: none;
    }
    
    .language-switcher {
        gap: 6px;
    }
    
    .lang-link {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    /* Hero */
    .hero {
        height: 500px;
        margin-top: 60px;
    }
    
    .hero-content {
        padding: 30px 20px 110px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 13px 24px;
        font-size: 14px;
        text-align: center;
    }
    
    .hero-controls {
        bottom: 20px;
        gap: 12px;
    }
    
    .hero-prev,
    .hero-next {
        width: 36px;
        height: 36px;
    }
    
    .hero-prev svg,
    .hero-next svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-dot.active {
        width: 24px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .services,
    .stats,
    .testimonials,
    .newsletter {
        padding: 50px 0;
    }
    
    /* Service Cards */
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .service-content p {
        font-size: 14px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Testimonials */
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Newsletter */
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-content p {
        font-size: 14px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    /* Breadcrumbs */
    .breadcrumbs {
        padding: 15px 0;
        margin-top: 60px;
    }
    
    .breadcrumbs-list {
        font-size: 13px;
    }
    
    /* Page Header */
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    /* Service Page */
    .service-page-content {
        padding: 40px 0;
    }
    
    .service-intro h2 {
        font-size: 24px;
    }
    
    .service-intro p {
        font-size: 14px;
    }
    
    .service-highlights {
        gap: 15px;
    }
    
    .highlight-item {
        font-size: 13px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 40px 30px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
    
    .footer-col ul li a,
    .footer-col p {
        font-size: 13px;
    }
    
    .certifications {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .social-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .container {
        padding: 0 10px;
    }
    
    .hero {
        height: 422px;
        margin-top: 82px;
    }
    
    .hero-content {
        padding: 25px 15px 100px;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 14px;
        text-align: center;
    }
    
    .hero-controls {
        bottom: 18px;
        gap: 10px;
    }
    
    .hero-prev,
    .hero-next {
        width: 32px;
        height: 32px;
    }
    
    .hero-dot {
        width: 7px;
        height: 7px;
    }
    
    .hero-dot.active {
        width: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .certifications {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fix for mobile menu overlay */
body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Ensure mobile toggle is visible on mobile */
@media (min-width: 993px) {
    .mobile-toggle {
        display: none !important;
    }
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    #backToTop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Fade-in Animation Styles */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure content is visible by default on mobile to prevent blank space */
@media (max-width: 768px) {
    .fade-in {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Language Switcher Mobile Styles - handled in main mobile breakpoint */

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    font-size: 14px;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    line-height: 1.4;
    color: #fff;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-buttons .cookie-btn-ok {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cookie-buttons .cookie-btn-ok:hover {
    background: #0b5ed7;
}

.cookie-buttons .cookie-link {
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-buttons .cookie-link:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
