* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 28px;
    font-weight: 700;
    color: #1A237E;
    line-height: 1.2;
}

.logo-sub {
    font-size: 18px;
    font-weight: 400;
    color: #1A237E;
    line-height: 1.2;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #1A237E;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #1A237E;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #673AB7;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(103, 58, 183, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary {
    background: #673AB7;
    color: #fff;
}

.btn-primary:hover {
    background: #512DA8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #1A237E;
}

.btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.btn-purple {
    background: #9575CD;
    color: #fff;
}

.btn-purple:hover {
    background: #7E57C2;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
}

.service-icon {
    font-size: 40px;
    color: #1A237E;
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1A237E;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.service-link:hover {
    color: #673AB7;
}

/* About Us Section */
.about {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.section-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-title .underline {
    position: relative;
}

.section-title .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1A237E;
}

.about-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Recent Projects Section */
.projects {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A237E, #673AB7);
    position: relative;
}

.projects-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.projects-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(26, 35, 126, 0.9);
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
}

.projects-text {
    color: #fff;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title.white {
    color: #fff;
}

.projects-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Experience & Technology Section */
.experience {
    padding: 80px 0;
    background: #fff;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.experience-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.stats-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item {
    width: 100%;
}

.stat-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.stat-value {
    color: #673AB7;
}

.stat-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #1A237E, #673AB7);
    border-radius: 4px;
    transition: width 1s ease;
}

.experience-image {
    position: relative;
}

.experience-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.counter-block {
    background: #673AB7;
    padding: 30px 20px;
    text-align: center;
    border-radius: 5px;
}

.counter-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Client Satisfaction Section */
.testimonials {
    padding: 80px 0;
    background: #f5f5f5;
    text-align: center;
}

.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.testimonials-header .fa-star {
    color: #FFC107;
    font-size: 18px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.testimonial-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: #673AB7;
}

/* Sustainable Technology Section */
.sustainable {
    position: relative;
    padding: 100px 0;
    background-image: url('images/wind-turbines.jpg');
    background-size: cover;
    background-position: center;
}

.sustainable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(103, 58, 183, 0.85));
}

.sustainable-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: left;
}

.sustainable-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1A237E, #673AB7);
    padding: 60px 0;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-item {
    margin-bottom: 30px;
}

.footer-icon {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.footer-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.footer-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-email {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-phone {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    /* Hamburger Menu - Show on mobile */
    .hamburger-menu {
        display: flex;
    }

    /* Navigation - Hide by default on mobile, show when active */
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 15px;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Header adjustments */
    .header-content {
        position: relative;
    }

    .logo-main {
        font-size: 24px;
    }

    .logo-sub {
        font-size: 16px;
    }

    /* Hero Section */
    .hero {
        height: 500px;
        padding: 20px 0;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Section titles */
    .section-title {
        font-size: 28px;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about-description {
        font-size: 15px;
    }

    /* Projects */
    .projects {
        padding: 60px 0;
    }

    .projects-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-image img {
        height: 200px;
    }

    /* Experience */
    .experience {
        padding: 60px 0;
    }

    .experience-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .experience-image img {
        height: 300px;
    }

    .counters {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Sustainable */
    .sustainable {
        padding: 60px 0;
    }

    .sustainable-content {
        max-width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-email,
    .footer-phone {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header {
        padding: 15px 0;
    }

    .logo-main {
        font-size: 20px;
    }

    .logo-sub {
        font-size: 14px;
    }

    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 20px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-label {
        font-size: 12px;
    }

    .services,
    .about,
    .projects,
    .experience,
    .testimonials,
    .sustainable {
        padding: 40px 0;
    }

    .service-icon {
        font-size: 35px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }

    .about-description,
    .projects-description,
    .experience-description,
    .sustainable-description {
        font-size: 14px;
    }

    .project-image img {
        height: 180px;
    }

    .experience-image img {
        height: 250px;
    }

    .counter-number {
        font-size: 28px;
    }

    .counter-label {
        font-size: 12px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-icon {
        font-size: 20px;
    }
}

/* ==========================================
   UPVC DOORS PAGE SPECIFIC STYLES
   ========================================== */

/* Hero Section for UPVC Doors Page */
.hero-doors {
    background-image: url('images/hero-bg.jpg');
}

.hero-title-large {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-blue {
    background: #1A237E;
    color: #fff;
}

.btn-blue:hover {
    background: #0d1544;
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #fff;
}

.why-choose-us .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 48px;
    color: #1A237E;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* About Two Column Section */
.about-two-column {
    padding: 80px 0;
    background: #f5f5f5;
}

.about-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 40px;
}

.about-column {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-heading {
    font-size: 26px;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Recent Projects New Section */
.recent-projects-new {
    padding: 80px 0;
    background: #fff;
}

.projects-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.project-card-new {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.project-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card-new:hover .project-image-wrapper img {
    transform: scale(1.05);
}

.project-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A237E;
    padding: 20px 20px 10px;
    margin: 0;
}

.project-card-description {
    font-size: 14px;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
    margin: 0;
}

/* Experience New Section */
.experience-new {
    padding: 80px 0;
    background: #f5f5f5;
}

.experience-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.experience-column {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.experience-heading {
    font-size: 26px;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 20px;
}

.experience-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.counter-item {
    background: #fff;
    padding: 40px 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-icon {
    font-size: 40px;
    color: #673AB7;
    margin-bottom: 15px;
}

.counter-item .counter-number {
    font-size: 42px;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 10px;
}

.counter-item .counter-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Testimonials New Section */
.testimonials-new {
    padding: 80px 0;
    background: #fff;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-new {
    background: #fff;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-quote {
    font-size: 16px;
    color: #666;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 5px;
}

.testimonial-designation {
    font-size: 14px;
    color: #673AB7;
}

/* Sustainable New Section */
.sustainable-new {
    position: relative;
    padding: 100px 0;
    background-image: url('images/wind-turbines.jpg');
    background-size: cover;
    background-position: center;
}

.sustainable-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(103, 58, 183, 0.85));
}

.sustainable-content-new {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.sustainable-description-new {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Footer New Section */
.footer-new {
    background: linear-gradient(135deg, #1A237E, #673AB7);
    padding: 60px 0 20px;
    color: #fff;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column-new {
    color: #fff;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-text-new {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-logo-section {
    text-align: left;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    font-style: italic;
}

.logo-text .white {
    color: #fff;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Styles for UPVC Doors Page */
@media (max-width: 992px) {
    .features-grid,
    .about-columns,
    .experience-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .projects-grid-new,
    .testimonials-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .features-grid,
    .about-columns,
    .experience-columns,
    .projects-grid-new,
    .testimonials-grid-new,
    .counters-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid-new {
        grid-template-columns: 1fr;
    }

    .copyright {
        flex-direction: column;
        text-align: center;
    }

    .feature-card,
    .about-column,
    .experience-column {
        padding: 30px 20px;
    }

    .counter-item {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-title {
        font-size: 20px;
    }

    .about-heading,
    .experience-heading {
        font-size: 22px;
    }

    .counter-item .counter-number {
        font-size: 36px;
    }

    .testimonial-quote {
        font-size: 14px;
    }
}

/* ==========================================
   CONTACT & FEEDBACK PAGE STYLES
   ========================================== */

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    color: #673AB7;
    margin-bottom: 20px;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 15px;
}

.contact-card-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.contact-card-text a {
    color: #1A237E;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card-text a:hover {
    color: #673AB7;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-column,
.map-column {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1A237E;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #673AB7;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rating Input */
.rating-input {
    display: flex;
    gap: 5px;
    direction: rtl;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 28px;
    color: #e0e0e0;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked ~ .star-label ~ .star-label,
.star-label:hover,
.star-label:hover ~ .star-label {
    color: #FFC107;
}

/* Map Placeholder */
.map-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: #f5f5f5;
    border-radius: 5px;
    color: #666;
}

.map-placeholder i {
    font-size: 60px;
    color: #673AB7;
    margin-bottom: 20px;
}

.map-note {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

/* Comparison List */
.comparison-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.comparison-list li {
    padding: 12px 0;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-list i {
    color: #673AB7;
    font-size: 18px;
}

/* Responsive for Contact & Feedback */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 60px 0;
    }
}

