* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --gray: #666;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark-bg);
    color: var(--white);
    padding: 10px 0;
    width: 100%;
}

.top-bar .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.top-bar-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-wrap: nowrap;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.phone i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
}

.phone-separator {
    margin: 0 5px;
    opacity: 0.6;
    flex-shrink: 0;
}

.phone span {
    white-space: nowrap;
    font-size: 14px;
    flex-shrink: 0;
}

.top-bar-links {
    flex-shrink: 0;
}

.call-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.call-btn:hover {
    background: #e55a2b;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo a {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 10px;
    color: var(--gray);
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: 0.3px;
    line-height: 1.3;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.nav-item: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-color);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0066b3 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.slide-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.85) 0%, rgba(0, 102, 179, 0.85) 100%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slide-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.slider-controls button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.slider-controls button:hover {
    background: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
}

/* Section Styles */
section {
    padding: 80px 0;
    scroll-margin-top: 80px;
}

.hero-slider {
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* What We Do */
.what-we-do {
    background: var(--light-bg);
}

.about-image-section {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.testimonial-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 14px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.feature-item h4 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Our Services */
.our-services {
    background: var(--white);
    position: relative;
}

.our-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 78, 137, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-image-section {
    margin: 0 auto 60px;
    max-width: 1000px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.services-main-image:hover {
    transform: scale(1.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e55a2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* Delivery Experts */
.delivery-experts {
    background: var(--light-bg);
}

.experts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experts-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experts-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.experts-main-image:hover {
    transform: scale(1.05);
}

.experts-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item h4 {
    color: var(--secondary-color);
    font-size: 16px;
}

/* Our Practice */
.our-practice {
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.practice-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.practice-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.85) 0%, rgba(0, 102, 179, 0.85) 100%);
}

.our-practice .container {
    position: relative;
    z-index: 1;
}

.our-practice .section-title {
    color: var(--white);
}

.about-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    padding: 10px 30px;
    border: 2px solid var(--white);
    border-radius: 5px;
    transition: all 0.3s;
}

.about-link:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Our Clients */
.our-clients {
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.client-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.client-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0066b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 78, 137, 0.3);
    transition: all 0.3s;
}

.client-card:hover .client-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 78, 137, 0.4);
}

.client-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.client-card p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 14px;
}

/* Quick Request */
.quick-request {
    background: var(--light-bg);
}

.request-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
    width: 100%;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* What We Offer */
.what-we-offer {
    background: var(--white);
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.offer-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.offer-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.offer-main-image:hover {
    transform: scale(1.05);
}

.offer-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 16px;
}

.offer-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.phone-link {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-feature-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.feature-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    min-width: 60px;
}

.feature-content h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.feature-content p {
    color: var(--gray);
    font-size: 14px;
}

/* Pricing */
.pricing {
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .pricing-features li {
    color: var(--white);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    font-weight: bold;
}

.amount {
    font-size: 48px;
    font-weight: bold;
}

.period {
    font-size: 16px;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--gray);
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-quote {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
}

.author-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* Blog Articles */
.blog-articles {
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.blog-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #e55a2b;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .slide-title {
        font-size: 42px;
    }
    
    .slide-subtitle {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {
    .services-grid,
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-slider {
        height: 550px;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .pricing-grid {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .experts-content,
    .offer-content {
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Top Bar */
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar .container {
        padding: 0 10px;
    }
    
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .phone {
        display: inline-flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        font-size: 9px;
        flex: 0 1 auto;
        flex-wrap: nowrap;
        gap: 3px;
        white-space: nowrap;
    }
    
    .phone i {
        font-size: 10px;
        flex-shrink: 0;
        display: inline-block;
    }
    
    .phone span {
        font-size: 8px;
        white-space: nowrap;
        flex-shrink: 0;
        display: inline-block;
    }
    
    .phone-separator {
        margin: 0 2px;
        flex-shrink: 0;
        display: inline-block;
    }
    
    .top-bar-links {
        flex-shrink: 0;
        margin-left: 5px;
    }
    
    .call-btn {
        padding: 4px 8px;
        font-size: 9px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Header */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 80px 20px 20px;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: -1;
    }
    
    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 0;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo a {
        font-size: 22px;
    }
    
    .logo-tagline {
        font-size: 8px;
        line-height: 1.2;
        max-width: 150px;
    }
    
    .hamburger {
        padding: 8px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 500px;
        min-height: 500px;
    }
    
    .slider-container {
        height: 100%;
    }
    
    .slide {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }
    
    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .slide-content {
        padding: 25px 20px;
        max-width: 92%;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
    }
    
    .slide-title {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .slide-subtitle {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .slide-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
        width: auto;
        display: inline-block;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    /* Grids */
    .features-grid,
    .services-grid,
    .clients-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experts-content,
    .offer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experts-image,
    .offer-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-main-image,
    .experts-main-image,
    .offer-main-image,
    .services-main-image {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .request-form {
        padding: 30px 20px;
    }
    
    /* Service Cards */
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Top Bar */
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar .container {
        padding: 0 8px;
    }
    
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 3px;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .phone {
        display: inline-flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        font-size: 8px;
        flex: 0 1 auto;
        flex-wrap: nowrap;
        gap: 2px;
        white-space: nowrap;
    }
    
    .phone i {
        font-size: 9px;
        flex-shrink: 0;
        display: inline-block;
    }
    
    .phone span {
        font-size: 7px;
        white-space: nowrap;
        flex-shrink: 0;
        display: inline-block;
    }
    
    .phone-separator {
        display: inline-block;
        margin: 0 2px;
        flex-shrink: 0;
    }
    
    .top-bar-links {
        flex-shrink: 0;
        margin-left: 3px;
    }
    
    .call-btn {
        padding: 4px 6px;
        font-size: 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Header */
    .logo a {
        font-size: 20px;
    }
    
    .logo-tagline {
        font-size: 8px;
        line-height: 1.2;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 450px;
        min-height: 450px;
    }
    
    .slide {
        padding: 15px 0;
    }
    
    .slide-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .slide-subtitle {
        font-size: 18px;
    }
    
    .slide-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .slide-content {
        padding: 20px 15px;
        max-width: 95%;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
    }
    
    .slide-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .slide-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .slide-description {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
        width: auto;
    }
    
    .slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-label {
        font-size: 12px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    /* Images */
    .about-main-image,
    .experts-main-image,
    .offer-main-image,
    .services-main-image {
        height: 200px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-item h4 {
        font-size: 14px;
    }
    
    /* Feature Items */
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 32px;
    }
    
    .feature-item h4 {
        font-size: 18px;
    }
    
    /* Service Cards */
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    /* Client Cards */
    .client-card {
        padding: 30px 15px;
    }
    
    .client-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 25px 15px;
    }
    
    .pricing-card h3 {
        font-size: 20px;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .currency {
        font-size: 20px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 18px;
    }
    
    /* Forms */
    .request-form {
        padding: 25px 15px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 15px;
    }
    
    .footer-column h3 {
        font-size: 24px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 14px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Offer Section */
    .offer-contact {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .phone-link {
        font-size: 18px;
    }
    
    .offer-feature-item {
        padding: 15px;
    }
    
    .feature-number {
        font-size: 28px;
        min-width: 50px;
    }
    
    .feature-content h3 {
        font-size: 16px;
    }
}
