* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animated {
    animation-name: fadeInUp;
}

.fade-in.animated {
    animation-name: fadeIn;
}

.slide-in-left.animated {
    animation-name: slideInLeft;
}

.slide-in-right.animated {
    animation-name: slideInRight;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-left {
    display: flex;
    gap: 25px;
    flex: 1;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #D4A574;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D4A574;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-left: auto;
    margin-right: 15px;
}

.social-link {
    color: #D4A574;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
}

.btn-call {
    background: #D4A574;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-call:hover {
    background: #c49563;
    transform: translateY(-2px);
}

.btn {
    font-weight: 300;
}

.header-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.5), transparent);
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/Home/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 50px 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Azonix', sans-serif;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 25px;
    color: #ffffff;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn {
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 2px solid #D4A574;
    color: #D4A574;
}

.btn-outline:hover {
    background: #D4A574;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-description {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 200;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description p {
    margin-bottom: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 18px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 165, 116, 0.6);
    background: rgba(255, 255, 255, 0.25);
}

.service-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 500;
}

.service-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 200;
}

/* Services Page */
.services-page {
    background: #f5ebe0;
    padding: 100px 50px 60px;
    min-height: 100vh;
}

.services-page-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-page-title {
    color: #D4A574;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
}

.services-page-subtitle {
    color: #333333;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

.service-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.service-info.reverse {
    direction: rtl;
}

.service-info.reverse > * {
    direction: ltr;
}

.service-info-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-info-image img:hover {
    transform: scale(1.05);
}

.service-info-text {
    padding: 15px;
}

.service-info-title {
    color: #333333;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 18px;
}

.service-info-description {
    color: #333333;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
}

/* Projects Page */
.projects-page {
    background: #f5ebe0;
    padding: 100px 50px 60px;
    min-height: 100vh;
}

.projects-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.projects-tagline {
    color: #333333;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-page-title {
    color: #D4A574;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.projects-page-subtitle {
    color: #333333;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.25);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-title {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    text-align: left;
    margin: 0;
}

/* Contact Page */
.contact-hero {
    position: relative;
    background-image: url('images/Home/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 50px 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-text {
    color: #ffffff;
}

.contact-title {
    color: #D4A574;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-description {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.contact-phone-link {
    color: #D4A574;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-phone-link:hover {
    color: #ffffff;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 165, 116, 0.4);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-group label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #D4A574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
    background: #ffffff;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #999999;
    font-weight: 300;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #D4A574, #c49563);
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    align-self: center;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #c49563, #b38552);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

/* Location Section */
.location-section {
    background: #f5ebe0;
    padding: 60px 50px;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-info {
    text-align: center;
    margin-bottom: 30px;
}

.location-title {
    color: #D4A574;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.location-address {
    color: #333333;
    font-size: 15px;
    font-weight: 300;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.location-map iframe {
    display: block;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
    padding: 60px 50px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-tagline {
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-main-title {
    color: #D4A574;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-read-more {
    display: inline-block;
    background: #D4A574;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #c49563;
    transform: translateY(-2px);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-text {
    padding: 10px;
}

.service-title {
    color: #D4A574;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-description {
    color: #333333;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

/* Meet APO Exteriors Section */
.meet-apo {
    position: relative;
    background-image: url('images/Home/2023-05-23-mnl4eRqreOiNRoPX.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 50px;
    color: #ffffff;
}

.meet-apo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.meet-apo-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.meet-tagline {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meet-title {
    color: #D4A574;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.meet-description {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 52px;
    font-weight: 400;
    color: #D4A574;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.4;
}

.manager-info {
    margin-top: 30px;
}

.manager-name {
    color: #D4A574;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.manager-title {
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
    padding: 60px 50px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
}

.stars i {
    color: #D4A574;
    font-size: 16px;
}

.testimonial-text {
    color: #333333;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: #D4A574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: #ffffff;
    font-size: 20px;
}

.author-name {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter {
    background: #D4A574;
    padding: 60px 50px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 12px;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.form-group input::placeholder {
    color: #999999;
    font-weight: 300;
}

.btn-submit {
    background: #333333;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.btn-submit:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    padding-bottom: 30px;
}

.footer-line {
    width: 90%;
    max-width: 1400px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4A574, transparent);
    margin: 0 auto 50px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.footer-column:hover {
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
    transform: translateY(-3px);
}

.footer-title {
    color: #D4A574;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 165, 116, 0.2);
}

.footer-text {
    color: #333333;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-link {
    color: #333333;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #D4A574;
    transform: translateX(3px);
}

.footer-logo {
    margin-top: 10px;
    text-align: center;
    padding: 10px;
}

.footer-logo img {
    width: 160px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.form-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff, #fafafa);
}

.footer-form-group {
    display: flex;
    flex-direction: column;
}

.footer-form-group label {
    color: #333333;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.footer-form-group input,
.footer-form-group textarea {
    padding: 12px 14px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    background: #ffffff;
    transition: all 0.3s ease;
}

.footer-form-group input:focus,
.footer-form-group textarea:focus {
    border-color: #D4A574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.footer-form-group input::placeholder,
.footer-form-group textarea::placeholder {
    color: #999999;
    font-weight: 300;
}

.footer-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-footer-submit {
    background: linear-gradient(135deg, #D4A574, #c49563);
    color: #ffffff;
    padding: 12px 40px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
    align-self: start;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-footer-submit:hover {
    background: linear-gradient(135deg, #c49563, #b38552);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding-top: 25px;
    margin-top: 20px;
}

.copyright {
    color: #666666;
    font-size: 12px;
    font-weight: 300;
}

.mj-link {
    color: #333333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mj-link:hover {
    color: #D4A574;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 0 20px;
    }
    
    .logo {
        position: relative;
        left: 0;
        transform: none;
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .nav-left {
        flex: initial;
    }
    
    .social-icons {
        margin: 0 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-main-title {
        font-size: 28px;
    }
    
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
    
    .service-image {
        height: 300px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .meet-title {
        font-size: 28px;
    }
    
    .manager-name {
        font-size: 22px;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo img {
        width: 140px;
    }
    
    .services-page-title {
        font-size: 28px;
    }
    
    .service-info,
    .service-info.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
    
    .service-info-image {
        height: 280px;
    }
    
    .service-info-title {
        font-size: 22px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 250px;
    }
    
    .projects-page-title {
        font-size: 32px;
    }
    
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .location-title {
        font-size: 28px;
    }
    
    .location-map {
        height: 300px;
    }
    
    .location-map iframe {
        height: 300px;
    }
}
