/* ---- Global Styles ---- */
:root {
    /* Updated color scheme with black and yellow tones */
    --primary-color: #FFD700; /* Yellow gold */
    --primary-dark: #E6C200; /* Darker gold for hover states */
    --secondary-color: #1D1D1D; /* Near black */
    --dark-accent: #333333;
    --light-gray: #f8f8f8;
    --medium-gray: #e0e0e0;
    --dark-gray: #444444;
    --footer-dark: #121212;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
    --transition-speed: 0.3s;
    --section-spacing: 80px;
    --border-radius: 12px; /* Increased for a more modern look */
    --small-radius: 6px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --hover-transform: translateY(-5px);
    
    /* Animation variables */
    --fade-in-duration: 0.8s;
    --slide-in-duration: 0.6s;
    --hover-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.social-link i {
    font-size: 35px;
    transition: transform 0.3s;
}

.social-link:hover i {
    transform: scale(1.2);
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
    background-color: #fcfcfc;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    animation: fadeIn var(--fade-in-duration) forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp var(--slide-in-duration) forwards;
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideLeft var(--slide-in-duration) forwards;
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    animation: slideRight var(--slide-in-duration) forwards;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }

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

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

@keyframes slideLeft {
    from { 
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from { 
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Card and element hover effects */
.hover-lift {
    transition: var(--hover-transition);
}

.hover-lift:hover {
    transform: var(--hover-transform);
    box-shadow: var(--box-shadow);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}
.container h2 {
    font-size: 2rem;
    color: white;
}

.container h3 {
    margin-top: 50px;
}

#text1, #text2, #text3 {
    font-size: 1.2rem;
    color: black;

}


.team {
    padding: var(--section-spacing) 0;
    background-color: black;
    position: relative;
    background-image: url('../img/backgrounds/unsere-bck.jpg');
    background-size: cover;
    background-position: center;
}

/* 
.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Sfond i errësuar */
    /* pointer-events: none;
}
 /* */



/* 
.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Sfond i errësuar */
    /* pointer-events: none;
} */

/* 
.team h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
} */



h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.container2 h2 {
    font-size: 2rem;
    color: black;
}

.container2 h3 {
    margin-top: 50px;
    text-align: center;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

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

img {
    max-width: 100%;
    height: auto;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 28px;
    border-radius: var(--small-radius);
    font-weight: 600;
    transition: var(--hover-transition);
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--secondary-color);
    transform: var(--hover-transform);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::after {
    transform: translateX(0);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: var(--small-radius);
    font-weight: 600;
    transition: var(--hover-transition);
    text-align: center;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

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

/* ---- Contact Info Bar (Hidden) ---- */
.contact-info-bar {
    display: none;
}

/* ---- Header ---- */
.header {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

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

.logo {
    transition: var(--hover-transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
}

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin: 0 15px;
    position: relative;
}

.nav-list a {
    font-weight: 500;
    position: relative;
    padding: 8px 5px;
    transition: var(--hover-transition);
    color: white;
}

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

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

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

.nav-list a.active {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
    padding: 10px 0;
    overflow: hidden;
    
}

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

.dropdown-menu li {
    margin: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    transition-delay: calc(0.05s * var(--item-index, 0));
}

.dropdown:hover .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu a {
    color: black;
    display: block;
    padding: 10px 20px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s, background-color 0.3s, padding 0.3s;
}

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

.dropdown-menu a:hover {
    border-left-color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.02);
    padding-left: 25px;
}

.contact-button a {
    position: relative;
    overflow: hidden;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(29, 29, 29, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    padding: 30px 20px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.05s * var(--item-index, 0));
}

.mobile-menu a {
    display: block;
    font-size: 1.2rem;
    padding: 10px 5px;
    position: relative;
    font-weight: 500;
    color: white;
}

.mobile-menu a.active {
    color: var(--primary-color);
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown > a::after {
    content: '›';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.mobile-dropdown.active > a::after {
    transform: translateY(-50%) rotate(-90deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
    border-left: 2px solid var(--light-gray);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
    animation: fadeIn 0.3s forwards;
}

/* ---- Hero Section ---- */
.hero {
    background-color: #f5f5f5;
    background-image: url('../img/hero/background.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* Errësuar pak më shumë për të dalë tekstet më mirë */
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: white;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center; /* Ndryshuar nga flex-start për të siguruar rreshtim të mirë */
    margin-bottom: 20px; /* Shtuar hapësirë më të madhe mes feature-ve */
}

.feature-icon {
    flex-shrink: 0;
    margin-right: 15px;
    width: 40px;  /* Gjerësi e fiksuar që të gjitha ikonat */
    height: 40px; /* Lartësi e fiksuar që të gjitha ikonat */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain; /* Ruaj proporcionet e ikonës */
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* Butoni i kontaktit me tekst të vendosur në qendër */
.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 25px;
}

.rating {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-top: 15px;
}

.stars {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.rating-text {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* ---- History Section ---- */
.history {
    padding: var(--section-spacing) 0;
    background-color: white;
}

.history-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.history-image {
    flex: 1;
}

.history-text {
    flex: 1;
}

.image-container {
    width: 100%;
    height: 0;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.placeholder-image {
    background-color: var(--medium-gray);
    width: 100%;
    height: 100%;
    position: absolute;

}

/* ---- Services Section ---- */
.services {
    padding: var(--section-spacing) 0;
    background-color: var(--light-gray);
    position: relative;
    background-image: url('../img/backgrounds/services-bg.jpg');
    background-size: cover;
    background-position: center;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Sfond i errësuar */
    pointer-events: none;
}

.services h2 {
    position: relative;
}

.services h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--hover-transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-image {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s ease;
}

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

.service-card:hover h3::after {
    width: 70px;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
    flex-grow: 1;
}

.service-card .read-more {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-right: 20px;
    align-self: flex-start;
    margin-top: auto;
}

.service-card .read-more::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.service-card:hover .read-more::after {
    transform: translate(5px, -50%);
}

.service-card .read-more:hover {
    color: var(--primary-color);
}

.service-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

/* ---- Testimonials Section ---- */
.testimonials {
    padding: var(--section-spacing) 0;
    background-color: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-wrapper {
    position: relative;
    height: 250px;
}

.testimonial-slide {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

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

.testimonial-slide h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-type {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: var(--medium-gray);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
}

/* ---- Team Section ---- */
.team {
    padding: var(--section-spacing) 0;
    background-color: var(--dark-gray);
    color: white;
}

.team-single {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
}

.team-member-large {
    text-align: center;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
}

.team-image {
    height: 300px;
    background-color: var(--medium-gray);
    margin-bottom: 15px;
    background-image: url('../img/team/dernjani.jpg');
    background-size: cover;
    background-position: center;
}

.team-member h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

/* ---- Projects Section ---- */
.projects {
    padding: var(--section-spacing) 0;
    background-color: white;
}

.project-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.project-slider-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.project-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    background-color: white;
}

.project-slide.active {
    opacity: 1;
}

.project-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-speed);
}

.project-nav:hover {
    background-color: white;
}

.project-nav.prev {
    left: 10px;
}

.project-nav.next {
    right: 10px;
}

.project-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.project-dot {
    width: 12px;
    height: 12px;
    background-color: var(--medium-gray);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.project-dot.active {
    background-color: var(--primary-color);
}

/* ---- CTA Section ---- */
.cta-section {
    padding: var(--section-spacing) 0;
    background-color: var(--light-gray);
}

.cta-content {
    display: flex;
    gap: 40px;
}

.cta-text {
    flex: 1;
}

.cta-text .btn-primary,
.cta-text .btn-secondary, 
.cta-text .btn-tertiary {
    display: inline-block;
    margin: 10px 10px 10px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--hover-transition);
}

.cta-text .btn-secondary:hover,
.cta-text .btn-tertiary:hover,
.cta-text .btn-primary:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.cta-map {
    flex: 1;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.address {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.address img {
    width: 20px;
    margin-right: 10px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 2;
    margin-right: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    transition: color var(--transition-speed);
}

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

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-between;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: white;
    opacity: 0.8;
    transition: opacity var(--transition-speed);
}

.footer-column a:hover {
    opacity: 1;
    color: white;
}

.contact-info li {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Responsive Styles ---- */
@media (max-width: 1024px) {
    .hero-features {
        grid-template-columns: 1fr;
    }

    .history-flex {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 0;
    }

    .main-nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .feature {
        flex-direction: column;
    }

    .feature-icon {
        margin-bottom: 10px;
    }

    .project-slider-wrapper {
        height: 300px;
    }
}
