/* style.css */
:root {
    --primary: #111827;
    --primary-light: #1F2937;
    --secondary: #F59E0B;
    --secondary-light: #FBBF24;
    --accent: #EF4444;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --dark: #111827;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --rounded-sm: 8px;
    --rounded-md: 12px;
    --rounded-lg: 16px;
    --rounded-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--rounded-full);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
    font-size: 16px;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--secondary-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-primary:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.75rem;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    gap: 8px;
}

.logo-icon {
    color: var(--secondary);
    font-size: 1.8rem;
}

.logo-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--rounded-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links li a:hover {
    color: var(--secondary);
    background-color: rgba(245, 158, 11, 0.1);
}

.nav-links li a.active {
    color: var(--secondary);
    font-weight: 600;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 220px;
    background-color: var(--white);
    border-radius: var(--rounded-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 8px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--dark);
    transition: var(--transition);
    font-size: 15px;
    gap: 10px;
}

.dropdown-content a:hover {
    background-color: var(--gray-light);
    color: var(--primary);
    padding-left: 24px;
}

.dropdown-content a i {
    width: 18px;
    text-align: center;
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: var(--rounded-sm);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background-color: var(--gray-light);
}

/* Hero Section with Slideshow */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(31, 41, 55, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.hero h1 {
    font-size: 3.75rem;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    min-width: 180px;
}

/* Services Section */
.services {
    position: relative;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.service-img {
    height: 240px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 1rem;
}

.service-instagram {
    margin-top: 20px;
    display: flex;
    align-items: center;
    color: var(--secondary);
    font-weight: 600;
    gap: 8px;
}

/* Service Details */
.service-details {
    margin-bottom: 80px;
    padding-top: 60px;
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.service-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Automec Subservices */
.automec-subservices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.automec-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    border: 1px solid var(--gray-light);
}

.automec-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.automec-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.automec-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.7));
    z-index: 1;
}

.automec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.automec-card:hover .automec-img img {
    transform: scale(1.05);
}

.automec-content {
    padding: 24px;
    position: relative;
}

.automec-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: var(--rounded-full);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.automec-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.automec-content ul {
    margin: 16px 0 24px;
    padding-left: 0;
    list-style: none;
}

.automec-content ul li {
    margin-bottom: 10px;
    color: var(--gray);
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
}

.automec-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* Dapur Subservices */
.dapur-subservices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.dapur-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-light);
}

.dapur-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.dapur-img {
    height: 220px;
    overflow: hidden;
}

.dapur-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dapur-card:hover .dapur-img img {
    transform: scale(1.05);
}

.dapur-content {
    padding: 24px;
    background: linear-gradient(to bottom, var(--white) 0%, #f9f5e8 100%);
}

.dapur-tag {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: var(--rounded-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.dapur-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.dapur-content ul {
    margin: 16px 0 24px;
    padding-left: 0;
    list-style: none;
}

.dapur-content ul li {
    margin-bottom: 10px;
    color: var(--gray);
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
}

.dapur-content ul li::before {
    content: '\f561';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* Amarta Subservices */
.amarta-subservices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.amarta-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-light);
}

.amarta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.amarta-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.amarta-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.amarta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.amarta-card:hover .amarta-img img {
    transform: scale(1.05);
}

.amarta-content {
    padding: 24px;
    background-color: var(--light);
}

.amarta-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.amarta-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.amarta-content ul {
    margin: 16px 0 24px;
    padding-left: 0;
    list-style: none;
}

.amarta-content ul li {
    margin-bottom: 10px;
    color: var(--gray);
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
}

.amarta-content ul li::before {
    content: '\f21e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 12px;
    font-style: italic;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 16px;
    flex-shrink: 0;
    background-color: rgba(245, 158, 11, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.feature-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    background-color: var(--light);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    margin: 0 15px;
    position: relative;
    border: 1px solid var(--gray-light);
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(245, 158, 11, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.testimonial-rating {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--secondary);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Contact Form with CKEditor */
.contact-form {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--rounded-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* CKEditor Custom Styles */
.cke_chrome {
    border-radius: var(--rounded-sm) !important;
    border: 1px solid var(--gray-light) !important;
    box-shadow: none !important;
    transition: var(--transition);
}

.cke_chrome:hover {
    border-color: var(--secondary) !important;
}

.cke_focus {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2) !important;
    border-color: var(--secondary) !important;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 2.5rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: inline-block;
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 16px;
    color: var(--white);
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-links a i {
    width: 20px;
    color: var(--secondary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    gap: 12px;
}

.contact-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item p {
    line-height: 1.6;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background-color: #20bd5a;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .hero h1 {
        font-size: 3.25rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .section-title h2 {
        font-size: 2.25rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img {
        order: -1;
        height: 400px;
    }
    
    .footer-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav .btn-primary {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 24px;
        transition: var(--transition);
        z-index: 999;
        gap: 16px;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin: 0;
    }
    
    .nav-links li a {
        padding: 16px;
        justify-content: space-between;
        border-radius: var(--rounded-sm);
        background-color: var(--light);
    }
    
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: var(--light);
        border-radius: var(--rounded-sm);
        margin-top: 8px;
        padding: 0;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 12px 16px;
        background-color: transparent;
    }
    
    .dropdown-content a:hover {
        background-color: rgba(245, 158, 11, 0.1);
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 40px 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .services-grid,
    .automec-subservices,
    .dapur-subservices,
    .amarta-subservices {
        grid-template-columns: 1fr;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links h3, 
    .footer-contact h3 {
        margin-bottom: 20px;
    }
    
    .about-img {
        height: 300px;
    }
}