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

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --text-color: #333;
    --bg-color: #ffffff;
    --header-bg: #ffffff;
    --footer-bg: #2c3e50;
    --footer-text: #ecf0f1;
    --border-color: #e0e0e0;
    --hover-color: #0056b3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Top Header Bar */
.top-header {
    background-color: #4a4a4a;
    color: #ffffff;
    padding: 0.5rem 0;
    width: 100%;
    box-sizing: border-box;
}

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

.top-header-left {
    flex: 1;
}

.company-tagline {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quote-btn-top {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #87ceeb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quote-btn-top:hover {
    background-color: #6bb6d6;
    transform: translateY(-2px);
}

.phone-number {
    font-size: 0.9rem;
    color: #ffffff;
}

/* Mobile Contact Buttons - Hidden on Desktop */
.mobile-contact-buttons {
    display: none;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background-color: #87ceeb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    white-space: nowrap;
}

.mobile-contact-btn:hover {
    background-color: #6bb6d6;
    transform: translateY(-2px);
}

.mobile-contact-btn i {
    font-size: 0.9rem;
}

.mobile-call-btn {
    background-color: #28a745;
}

.mobile-call-btn:hover {
    background-color: #218838;
}

.mobile-email-btn {
    background-color: #007bff;
}

.mobile-email-btn:hover {
    background-color: #0056b3;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-icon i {
    font-size: 0.9rem;
}

/* Header Styles */
.main-header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1.5rem;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-link img {
    display: block;
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-shapes {
    position: relative;
    width: 60px;
    height: 50px;
}

.logo-shape {
    position: absolute;
    width: 35px;
    height: 35px;
    transform: rotate(45deg);
    border: 2px solid transparent;
}

.logo-shape-1 {
    background-color: #87ceeb;
    left: 0;
    top: 0;
    z-index: 1;
}

.logo-shape-2 {
    background-color: #dc143c;
    left: 12px;
    top: 5px;
    z-index: 2;
}

.logo-shape-3 {
    background-color: #4a4a4a;
    left: 24px;
    top: 10px;
    z-index: 3;
}

.logo-shape:hover {
    opacity: 0.9;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-am {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4a4a4a;
    line-height: 1;
    letter-spacing: -1px;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: #4a4a4a;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Navigation Separator */
.nav-separator {
    width: 1px;
    height: 40px;
    background-color: #d0d0d0;
    flex-shrink: 0;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu a i {
    font-size: 0.7rem;
}

.nav-menu a:hover {
    color: #87ceeb;
}

.nav-menu a.active {
    color: #87ceeb;
}

.nav-menu a.active::after {
    display: none;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    flex: 1;
   
}

/* Footer Styles */
.main-footer {
    background-color: #3a3a3a;
    color: #d0d0d0;
    margin-top: auto;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #d0d0d0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #d0d0d0;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: #d0d0d0;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer-contact-item:last-child {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a i {
    font-size: 1rem;
    width: 20px;
}

.footer-about-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #d0d0d0;
    font-size: 0.95rem;
}

.footer-experience {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555555;
    color: #d0d0d0;
    font-size: 0.9rem;
}

.designer-icon {
    color: #dc143c;
    font-size: 1rem;
    display: inline-block;
    margin-left: 0.3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 0.4rem 0;
    }

    .top-header-content {
        flex-direction: column;
        align-items: center;
    }

    /* Show Mobile Contact Buttons on Mobile */
    .mobile-contact-buttons {
        display: flex;
        order: -1;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Hide phone number text on mobile */
    .top-header-right {
        display: none;
    }

    .phone-number {
        font-size: 0.8rem;
        text-align: center;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }

    .social-icon i {
        font-size: 0.8rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-separator {
        display: none;
    }

    .logo-shapes {
        width: 50px;
        height: 42px;
    }

    .logo-shape {
        width: 28px;
        height: 28px;
    }

    .logo-shape-2 {
        left: 10px;
        top: 4px;
    }

    .logo-shape-3 {
        left: 20px;
        top: 8px;
    }

    .logo-am {
        font-size: 1.8rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        flex-direction: column;
        background-color: var(--header-bg);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .header-content {
        padding: 1rem 0;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }
}

/* Banner Slider Styles */
.banner-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
  
}

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

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slide Backgrounds - Using actual images */
.slide:nth-child(1) {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/b1.png');
}

.slide:nth-child(2) {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/b2.png');
}

.slide:nth-child(3) {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/b3.png');
}

.slide:nth-child(4) {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/b4.png');
}

.slide:nth-child(5) {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/b5.png');
}

.slide:nth-child(6) {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/b6.png');
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #87ceeb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.slide-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav i {
    font-size: 1.2rem;
    color: #333;
}

/* Indicator Dots */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background-color: #ffffff;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .banner-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-nav i {
        font-size: 1rem;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Page Content Styles */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    color: white;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.welcome-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-text {
    padding: 1rem;
}

.welcome-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
    font-size: 1rem;
}

.read-more-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #87ceeb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.read-more-btn:hover {
    background-color: #6bb6d6;
    transform: translateY(-2px);
}

/* Services Overview Section */
.services-overview {
    padding: 4rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/bg.png') center/cover;
    background-attachment: fixed;
}

.services-overview-content {
    text-align: center;
}

.section-title-white {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle-white {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.service-categories {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-category-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #87ceeb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.service-category-btn:hover {
    background-color: #6bb6d6;
    transform: translateY(-2px);
}

/* Services Grid Section */
.services-grid-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Quote and Testimonials Section */
.quote-testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg2.png') center/cover;
    background-attachment: fixed;
}

.quote-testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.quote-section,
.testimonials-section {
    padding: 2rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quote-form input,
.quote-form textarea {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #87ceeb;
    background-color: rgba(255, 255, 255, 0.15);
}

.send-btn {
    padding: 0.8rem 2rem;
    background-color: #87ceeb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.send-btn:hover {
    background-color: #6bb6d6;
    transform: translateY(-2px);
}

.testimonial-content {
    margin-top: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-indicators {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #ffffff;
    width: 30px;
    border-radius: 5px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-choose-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.reason-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #87ceeb;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: #666;
    line-height: 1.6;
}

.why-choose-video {
    width: 100%;
    height: 550px;
    overflow: hidden;
}
.why-choose-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.video-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #d0d0d0, #b0b0b0);
}

.video-placeholder:hover i {
    transform: scale(1.1);
    color: #ffffff;
}

/* Recent Projects Section */
.recent-projects-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.recent-projects-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.project-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .welcome-content,
    .why-choose-content,
    .quote-testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    /* Show Mobile Contact Buttons on Mobile */
    .mobile-contact-buttons {
        display: flex;
        order: -1;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Hide phone number text on mobile */
    .top-header-right {
        display: none;
    }

    .company-tagline {
        font-size: 0.8rem;
    }

    .phone-number {
        font-size: 0.8rem;
    }

    .quote-btn-top {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .welcome-section,
    .services-overview,
    .services-grid-section,
    .quote-testimonials-section,
    .why-choose-section,
    .recent-projects-section {
        padding: 2.5rem 0;
    }

    .welcome-text .section-title,
    .section-title-white,
    .why-choose-text .section-title,
    .recent-projects-section .section-title {
        font-size: 2rem;
    }

    .section-subtitle-white {
        font-size: 1rem;
    }

    .service-categories {
        flex-direction: column;
        align-items: center;
    }

    .service-category-btn {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

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

    .quote-testimonials-content {
        grid-template-columns: 1fr;
    }

    .why-choose-video {
        height: 300px;
    }

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

    .project-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .welcome-text .section-title,
    .section-title-white,
    .why-choose-text .section-title,
    .recent-projects-section .section-title {
        font-size: 1.5rem;
    }

    .welcome-image {
        min-height: 300px;
    }

    .service-image {
        height: 200px;
    }

    .reason-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .reason-content h3 {
        font-size: 1rem;
    }

    .why-choose-video {
        height: 250px;
    }

    .video-placeholder i {
        font-size: 3rem;
    }
}

/* ============================================
   INNER PAGES STYLES
   ============================================ */

/* About Page Styles */
.about-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    padding: 1rem;
}

.about-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.text-center {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #87ceeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #87ceeb, #6bb6d6);
}

.experience-content {
    text-align: center;
}

.experience-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Page Styles */
.service-categories-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.service-categories-content {
    text-align: center;
}

.services-detail-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.services-detail-section.commercial-section {
    background-color: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.service-detail-content {
    padding: 2rem;
}

.service-detail-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.service-features li i {
    color: #87ceeb;
    font-size: 0.9rem;
}

.commercial-content {
    max-width: 900px;
    margin: 0 auto;
}

.commercial-text {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.commercial-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.commercial-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.commercial-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.05rem;
}

.commercial-features li i {
    color: #87ceeb;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg2.png') center/cover;
    background-attachment: fixed;
}

.cta-content {
    text-align: center;
}

.cta-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #87ceeb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #6bb6d6;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    padding: 1rem;
}

.contact-intro {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #87ceeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-item-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.contact-item-content p {
    margin-bottom: 0.3rem;
}

.contact-item-content a {
    color: #007bff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: #0056b3;
}

.contact-note {
    display: block;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.business-hours {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 500;
    color: #4a4a4a;
}

.hours-list .time {
    color: #666;
}

.contact-form-wrapper {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4a4a4a;
}

.required {
    color: #dc143c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87ceeb;
}

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

.submit-btn {
    padding: 1rem 2rem;
    background-color: #87ceeb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.submit-btn:hover {
    background-color: #6bb6d6;
    transform: translateY(-2px);
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.success-message i {
    color: #28a745;
    font-size: 1.25rem;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-message i {
    color: #dc3545;
    font-size: 1.25rem;
}

.form-message p {
    margin: 0;
    line-height: 1.5;
}

/* Responsive Styles for Inner Pages */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-card:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .about-section,
    .values-section,
    .experience-section,
    .services-detail-section,
    .contact-section {
        padding: 2.5rem 0;
    }

    .about-text .section-title,
    .section-title {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .service-detail-image {
        height: 250px;
    }

    .service-detail-content h3 {
        font-size: 1.5rem;
    }

    .commercial-text {
        padding: 2rem;
    }

    .contact-content {
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .contact-intro {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-item-content {
        text-align: center;
        width: 100%;
    }

    .contact-item-content h3 {
        text-align: center;
    }

    .contact-item-content p {
        text-align: center;
    }

    .contact-item-content a {
        text-align: center;
    }

    .contact-note {
        text-align: center;
        display: block;
    }

    .business-hours {
        text-align: center;
    }

    .business-hours h3 {
        text-align: center;
    }

    .hours-list {
        text-align: center;
    }

    .hours-list li {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
        align-items: center;
    }

    .hours-list .day,
    .hours-list .time {
        text-align: center;
    }

    .contact-form-wrapper {
        text-align: center;
    }

    .contact-form-wrapper .section-title {
        text-align: center;
    }

    .contact-form {
        text-align: left;
    }

    .form-group {
        text-align: left;
    }

    .form-group label {
        text-align: left;
    }

    .submit-btn {
        width: 100%;
        max-width: 100%;
    }

    .form-message {
        text-align: left;
        flex-wrap: wrap;
    }

    .form-message p {
        text-align: left;
        flex: 1;
        min-width: 0;
    }

    .page-header {
        text-align: center;
    }

    .page-header h1 {
        text-align: center;
    }

    .page-header p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-text .section-title,
    .section-title {
        font-size: 1.5rem;
    }

    .about-image {
        min-height: 300px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .service-detail-content {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-item {
        gap: 0.8rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    .contact-item-content h3 {
        font-size: 1.1rem;
    }

    .contact-item-content p {
        font-size: 0.95rem;
    }

    .contact-note {
        font-size: 0.85rem;
    }

    .business-hours {
        padding: 1.2rem;
    }

    .business-hours h3 {
        font-size: 1.1rem;
    }

    .hours-list li {
        font-size: 0.9rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

.gallery-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.gallery-intro {
    margin-bottom: 3rem;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 1rem auto 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background-color: #f8f9fa;
    color: #4a4a4a;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #87ceeb;
    color: #ffffff;
    border-color: #87ceeb;
}

.filter-btn.active {
    background-color: #87ceeb;
    color: #ffffff;
    border-color: #87ceeb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: #ffffff;
    padding: 1.5rem;
}

.gallery-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #87ceeb;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-view-btn:hover {
    background-color: #6bb6d6;
    transform: scale(1.1);
}

.gallery-view-btn i {
    font-size: 1.2rem;
}

.gallery-item.hidden {
    display: none;
}

/* ============================================
   TESTIMONIAL PAGE STYLES
   ============================================ */

.testimonials-page-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.testimonials-intro {
    margin-bottom: 3rem;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 1rem auto 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.3rem;
}

.author-location {
    font-size: 0.9rem;
    color: #999;
}

.testimonials-cta {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.testimonials-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Responsive Styles for Gallery and Testimonial Pages */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .gallery-section,
    .testimonials-page-section {
        padding: 2.5rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-image-wrapper {
        height: 250px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .testimonials-cta {
        padding: 2rem;
    }

    .testimonials-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-image-wrapper {
        height: 200px;
    }

    .gallery-content h3 {
        font-size: 1.2rem;
    }

    .gallery-content p {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 1rem;
    }

    .testimonials-cta {
        padding: 1.5rem;
    }

    .testimonials-cta h3 {
        font-size: 1.3rem;
    }
}

