* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #FFC401;
    --secondary-color: #000000;
    --text-dark: #222222;
    --text-light: #ffffff;
}

/* Header */
header {
    background-color: black;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1610px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    max-height: 55px;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

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

.nav-menu__item {
    position: relative;
}

.nav-menu__item a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

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

.nav-submenu {
    list-style: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 250px;
    background: white;
    border-radius: 8px;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-menu__item:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-submenu li a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.social-icon {
    font-size: 20px;
    color: var(--text-dark);
}

.phone-button {
    background-color: var(--primary-color);
    color: black;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    white-space: nowrap;
    font-size: 18px;
}

.phone-button:hover {
    background-color: #e5a800;
    color: white;
}

.toggle-mobileMenu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: url('../images/service/home.gif') center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 100px;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-box {
    background-color: var(--primary-color);
    padding: 30px 25px;
    border: 5px solid black;
    max-width: 500px;
    width: 100%;
}

.hero-box h1 {
    font-size: 24px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-box img {
    max-height: 90px;
    width: auto;
}

.hero-phone {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .header-menu .nav-menu {
        display: none !important;
    }

    .toggle-mobileMenu {
        display: block;
    }

    .header-container {
        flex-wrap: nowrap;
    }

    .header-menu {
        gap: 12px !important;
    }

    .logo img {
        max-height: 50px !important;
    }

    .phone-button {
        padding: 9px 16px !important;
        font-size: 12px !important;
    }

    .hero-section {
        padding-top: 60px;
    }

    .hero-box {
        padding: 25px 20px;
    }

    .hero-box h1 {
        font-size: 22px;
    }

    .hero-box img {
        max-height: 75px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 10px 0;
    }

    .header-container {
        justify-content: space-between;
        padding: 0 15px;
    }

    .header-menu {
        gap: 10px !important;
    }

    .phone-button {
        padding: 7px 14px !important;
        font-size: 11px !important;
    }

    .logo img {
        max-height: 42px !important;
    }

    .hero-section {
        min-height: 60vh;
        padding: 70px 15px 90px;
    }

    .hero-box {
        padding: 20px 15px;
        border-width: 3px;
    }

    .hero-box h1 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .hero-box img {
        max-height: 60px;
    }

    .hero-phone {
        bottom: 20px;
    }

    .toggle-mobileMenu {
        font-size: 24px;
    }
}

/* Services Section */
.services-section {
    padding: 70px 20px;
    background: white;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 60px;
    font-size: 2.5rem;
    letter-spacing: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 0;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;
}

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

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px 25px;
}

.service-card h3 {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 70px 20px;
    background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    z-index: -1;
    border-radius: 12px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #222;
    line-height: 1.2;
}

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

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

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        order: -1;
    }

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

    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-box {
        padding: 30px 40px;
    }

    .hero-box h1 {
        font-size: 2rem;
    }

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

    .about-image-wrapper {
        min-height: 350px;
    }
}

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

    .service-card {
        padding: 0;
    }

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

    .about-text h2 {
        font-size: 1.75rem;
    }

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

/* Footer */
footer {
    background-color: black;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-title {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: white;
}

.footer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-card {
    background-color: #ffc401;
    padding: 30px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-card:hover {
    transform: translateY(-5px);
    background-color: #ffc401;
}

.footer-card h3 {
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-card p {
    color: black;
    font-size: 1.1rem;
    margin: 0;
}

.footer-card p a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-card p a:hover {
    color: white;
}

.footer-map {
    max-width: 100%;
    margin: 0 auto;
}

.footer-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .footer-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.nav-menu__item:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.nav-submenu li a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.toggle-mobileMenu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 992px) {
    .header-menu .nav-menu {
        display: none !important;
    }

    .toggle-mobileMenu {
        display: block;
    }

    .header-container {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .header-menu {
        gap: 15px !important;
    }

    .logo img {
        max-height: 60px !important;
    }

    .phone-button {
        padding: 10px 18px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 600px) {
    .header-container {
        justify-content: space-between;
    }

    .header-menu {
        gap: 10px !important;
    }

    .phone-button {
        padding: 8px 15px !important;
        font-size: 13px !important;
    }

    .logo img {
        max-height: 50px !important;
    }
}

/* Service Hero Section */
.service-hero-section {
    background: #3b3b3b;
    padding: 80px 20px;
    text-align: center;
}

.service-hero-container {
    max-width: 1610px;
    margin: 0 auto;
}

.service-hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.service-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    text-transform: none;
    letter-spacing: 1px;
}

.service-hero-breadcrumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1rem;
    color: #e0e0e0;
}

.service-hero-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-hero-breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: #ffffff;
    font-size: 1.2rem;
}

/* Service Hero Section Responsive */
@media (max-width: 992px) {
    .service-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .service-hero-section {
        padding: 60px 15px;
    }

    .service-hero-title {
        font-size: 1.75rem;
    }
}

/* Service Content Section */
.service-content-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.service-content-image {
    height: 100%;
}

.service-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
}

.service-content-text p:last-child {
    margin-bottom: 0;
}

/* Service Content Section Responsive */
@media (max-width: 992px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .service-content-section {
        padding: 60px 15px;
    }

    .service-content-text p {
        font-size: 1rem;
    }
}


/* installation-benefits */
.installation-benefits{
    padding:60px 20px;
    background:#f8f8f8;
}

.installation-benefits .container{
    max-width:1200px;
    margin:auto;
}

/*======================
Heading
======================*/

.section-heading{
    max-width:720px;
    margin:auto;
    text-align:center;
    margin-bottom:40px;
}

.section-tag{
    display:inline-block;
    background:rgba(255,196,1,.15);
    color:var(--secondary-color);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:38px;
    color:var(--secondary-color);
    margin-bottom:18px;
    line-height:1.2;
}

.section-heading p{
    font-size:17px;
    line-height:1.8;
    color:#666;
}

/*======================
Benefits Card
======================*/

.benefits-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.benefits-card h3{
    text-align:center;
    margin-bottom:30px;
    color:var(--secondary-color);
    font-size:24px;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 25px;
}

.benefit-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px 18px;
    border:1px solid #ececec;
    border-radius:12px;
    transition:.35s;
    background:#fff;
}

.benefit-item:hover{
    transform:translateY(-4px);
    border-color:var(--primary-color);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.number{
    width:45px;
    height:45px;
    min-width:45px;
    border-radius:50%;
    background:var(--primary-color);
    color:var(--secondary-color);
    font-weight:700;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:15px;
}

.benefit-item p{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:var(--text-dark);
    line-height:1.5;
}

/*======================
Bottom Highlight
======================*/

.manufacturer-box{
    margin-top:35px;
    display:flex;
    align-items:center;
    gap:20px;
    padding:22px 28px;
    background:linear-gradient(135deg,var(--primary-color),#ffd84f);
    border-radius:16px;
}

.shield{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:#fff;
    color:var(--secondary-color);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.manufacturer-box p{
    margin:0;
    color:var(--secondary-color);
    font-size:17px;
    line-height:1.8;
}

/*======================
Responsive
======================*/

@media(max-width:991px){

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

}

@media(max-width:768px){

.installation-benefits{
    padding:55px 15px;
}

.section-heading h2{
    font-size:30px;
}

.section-heading p{
    font-size:16px;
}

.benefits-card{
    padding:25px;
}

.manufacturer-box{
    flex-direction:column;
    text-align:center;
}

}

/*=========================
Garage Door Opener Signs
=========================*/

.opener-signs{
    padding:60px 20px;
    background:#ffffff;
}

.opener-signs .container{
    max-width:1200px;
    margin:auto;
}

.signs-header{
    max-width:700px;
    margin:auto;
    text-align:center;
    margin-bottom:40px;
}

.section-label{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,196,1,.15);
    color:var(--secondary-color);
    font-weight:600;
    font-size:14px;
    margin-bottom:15px;
}

.signs-header h3{
    font-size:34px;
    color:var(--secondary-color);
    margin-bottom:15px;
}

.signs-header p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/*=========================
Grid
=========================*/

.signs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.sign-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px;
    border-radius:14px;
    background:#fafafa;
    border:1px solid #ececec;
    transition:.35s;
}

.sign-card:hover{
    background:var(--secondary-color);
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.sign-card:hover p{
    color:#fff;
}

.sign-card:hover .icon{
    background:var(--primary-color);
    color:#000;
}

.icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:12px;
    background:var(--primary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#000;
    font-size:18px;
    transition:.35s;
}

.sign-card p{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:var(--text-dark);
    line-height:1.5;
}

/*=========================
Bottom Box
=========================*/

.solution-box{
    margin-top:35px;
    display:flex;
    align-items:center;
    gap:20px;
    padding:24px 28px;
    border-left:6px solid var(--primary-color);
    background:#f8f8f8;
    border-radius:14px;
}

.solution-box i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary-color);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#000;
    font-size:22px;
    flex-shrink:0;
}

.solution-box p{
    margin:0;
    font-size:17px;
    line-height:1.8;
    color:var(--text-dark);
}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

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

}

@media(max-width:768px){

.opener-signs{
    padding:55px 15px;
}

.signs-header h3{
    font-size:28px;
}

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

.solution-box{
    flex-direction:column;
    text-align:center;
}

}




/*=========================================
Garage Door Opener Services
=========================================*/

.opener-services{
    padding:60px 20px;
    background:#f8f8f8;
}

.opener-services .container{
    max-width:1200px;
    margin:auto;
}

.services-heading{
    max-width:760px;
    margin:0 auto 55px;
    text-align:center;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,196,1,.15);
    color:var(--secondary-color);
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
    font-size:14px;
}

.services-heading h2{
    font-size:40px;
    color:var(--secondary-color);
    margin-bottom:18px;
    line-height:1.2;
}

.services-heading p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

/*============================*/

.services-list{
    position:relative;
}

.services-list::before{
    content:"";
    position:absolute;
    left:40px;
    top:0;
    bottom:0;
    width:2px;
    background:var(--primary-color);
}

/*============================*/

.service-row{
    display:flex;
    gap:30px;
    align-items:flex-start;
    margin-bottom:30px;
    position:relative;
}

.service-row:last-child{
    margin-bottom:0;
}

.service-number{
    width:80px;
    height:80px;
    background:var(--primary-color);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:700;
    color:#000;
    flex-shrink:0;
    z-index:2;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-content{
    flex:1;
    background:#fff;
    border-radius:16px;
    padding:28px;
    border-left:5px solid var(--primary-color);
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.service-content:hover{
    transform:translateX(10px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.service-content h3{
    margin-bottom:12px;
    color:var(--secondary-color);
    font-size:24px;
}

.service-content p{
    margin:0;
    line-height:1.8;
    color:#666;
}

/*============================*/

@media(max-width:768px){

.opener-services{
    padding:60px 15px;
}

.services-heading h2{
    font-size:32px;
}

.services-list::before{
    left:25px;
}

.service-row{
    gap:18px;
}

.service-number{
    width:50px;
    height:50px;
    font-size:18px;
}

.service-content{
    padding:20px;
}

.service-content h3{
    font-size:20px;
}

}


/*=============================
Garage Door Opener Types
=============================*/

.opener-types{
    padding:60px 20px;
    background:#ffffff;
}

.opener-types .container{
    max-width:1200px;
    margin:auto;
}

.types-heading{
    text-align:center;
    margin-bottom:50px;
}

.types-heading .section-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,196,1,.15);
    color:var(--secondary-color);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.types-heading h3{
    font-size:38px;
    color:var(--secondary-color);
    line-height:1.2;
}

/*========================*/

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

/*========================*/

.type-card{

    position:relative;

    background:#fff;

    border-radius:18px;

    padding:35px 30px;

    border-top:5px solid var(--primary-color);

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    overflow:hidden;

}

.type-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.card-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.type-icon{

    width:70px;

    height:70px;

    border-radius:16px;

    background:rgba(255,196,1,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    color:var(--secondary-color);

}

.card-number{

    font-size:42px;

    font-weight:700;

    color:#e9e9e9;

    line-height:1;

}

.type-card h4{

    font-size:24px;

    margin-bottom:15px;

    color:var(--secondary-color);

}

.type-card p{

    font-size:16px;

    line-height:1.8;

    color:#666;

}

/* Decorative Circle */

.type-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(255,196,1,.08);

    border-radius:50%;

    right:-90px;

    bottom:-90px;

}

/*========================*/

@media(max-width:991px){

.types-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.opener-types{

padding:60px 15px;

}

.types-heading h3{

font-size:30px;

}

.types-grid{

grid-template-columns:1fr;

}

.type-card{

padding:28px;

}

}


/*====================================*/

.garage-benefits{

    padding:60px 20px;

    background:#f8f8f8;

}

.garage-benefits .container{

    max-width:1200px;

    margin:auto;

}

/*==============================*/

.benefits-heading{

    text-align:center;

    max-width:720px;

    margin:auto;

    margin-bottom:50px;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:rgba(255,196,1,.15);

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.benefits-heading h3{

    font-size:38px;

    margin-bottom:15px;

    color:var(--secondary-color);

}

.benefits-heading p{

    font-size:17px;

    line-height:1.8;

    color:#666;

}

/*==============================*/

.benefits-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px 40px;

}

/*==============================*/

.benefit{

    display:flex;

    align-items:center;

    gap:20px;

    padding:20px 0;

    border-bottom:1px solid #ececec;

    transition:.35s;

}

.benefit:hover{

    padding-left:15px;

}

.benefit span{

    width:50px;

    height:50px;

    border-radius:50%;

    background:var(--primary-color);

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    color:#000;

    flex-shrink:0;

}

.benefit h4{

    margin:0;

    font-size:20px;

    color:var(--secondary-color);

    font-weight:600;

}

/*==============================*/

.benefits-note{

    margin-top:50px;

    display:flex;

    align-items:center;

    gap:20px;

    background:#ffffff;

    padding:25px;

    border-left:5px solid var(--primary-color);

    border-radius:14px;

}

.note-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--primary-color);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    color:#000;

    flex-shrink:0;

}

.benefits-note p{

    margin:0;

    line-height:1.8;

    color:#555;

}

/*==============================*/

@media(max-width:768px){

.benefits-list{

grid-template-columns:1fr;

}

.benefits-heading h3{

font-size:30px;

}

.benefits-note{

flex-direction:column;

text-align:center;

}

}


/*======================================
WHY CHOOSE US
======================================*/

.why-choose{
    padding:60px 20px;
    background:#ffffff;
}

.why-choose .container{
    max-width:1200px;
    margin:auto;
}

/*========================*/

.why-grid{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:60px;
    align-items:stretch;
}

/*========================*/

.why-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.section-tag{
    display:inline-block;
    width:fit-content;
    padding:8px 18px;
    background:rgba(255,196,1,.15);
    color:var(--secondary-color);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.why-left h2{
    font-size:42px;
    line-height:1.2;
    color:var(--secondary-color);
    margin-bottom:22px;
}

.why-left p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/*========================*/

.why-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

/*========================*/

.feature-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:15px;
    display:flex;
    gap:18px;
    align-items:flex-start;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.feature-box:hover{
    transform:translateY(-8px);
    border-color:var(--primary-color);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.feature-icon{
    width:62px;
    height:62px;
    min-width:62px;
    border-radius:16px;
    background:rgba(255,196,1,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    color:var(--secondary-color);
    transition:.3s;
}

.feature-box:hover .feature-icon{
    background:var(--primary-color);
}

.feature-box h3{
    font-size:22px;
    margin-bottom:10px;
    color:var(--secondary-color);
    line-height:1.3;
}

.feature-box p{
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:16px;
}

/*========================*/

@media(max-width:991px){

.why-grid{
    grid-template-columns:1fr;
    gap:40px;
}

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

.section-tag{
    margin-left:auto;
    margin-right:auto;
}

.why-right{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.why-choose{
    padding:60px 15px;
}

.why-left h2{
    font-size:32px;
}

.feature-box{
    padding:22px;
}

.feature-icon{
    width:55px;
    height:55px;
    min-width:55px;
    font-size:20px;
}

.feature-box h3{
    font-size:20px;
}

}


/*======================================
SERVICE AREAS
======================================*/

.service-areas{
    padding:60px 20px;
    background:#f8f8f8;
}

.service-areas .container{
    max-width:1200px;
    margin:auto;
}

/*===========================*/

.areas-heading{
    max-width:700px;
    margin:auto;
    text-align:center;
    margin-bottom:45px;
}

.areas-heading .section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,196,1,.15);
    color:var(--secondary-color);
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.areas-heading h3{
    font-size:40px;
    color:var(--secondary-color);
    margin-bottom:18px;
    line-height:1.2;
}

.areas-heading p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/*===========================*/

.areas-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
}

/*===========================*/

.area-chip{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    background:#ffffff;

    border:1px solid #ececec;

    border-radius:50px;

    font-weight:600;

    color:var(--secondary-color);

    transition:.3s;

    cursor:default;

}

.area-chip i{

    color:var(--primary-color);

    font-size:16px;

}

.area-chip:hover{

    background:var(--primary-color);

    border-color:var(--primary-color);

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,0,0,.08);

}

.area-chip:hover i{

    color:#000;

}

/*===========================*/

.areas-note{

    margin-top:45px;

    display:flex;

    align-items:center;

    gap:20px;

    background:#ffffff;

    border-left:5px solid var(--primary-color);

    padding:24px 28px;

    border-radius:14px;

}

.note-icon{

    width:60px;

    height:60px;

    min-width:60px;

    border-radius:50%;

    background:var(--primary-color);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#000;

    font-size:22px;

}

.areas-note p{

    margin:0;

    font-size:17px;

    line-height:1.8;

    color:#555;

}

/*===========================*/

@media(max-width:768px){

.service-areas{
    padding:60px 15px;
}

.areas-heading h3{
    font-size:32px;
}

.area-chip{
    width:100%;
    justify-content:center;
}

.areas-note{
    flex-direction:column;
    text-align:center;
}

}


/*======================================
INSTALLATION PROCESS
======================================*/

.installation-process{
    padding:60px 20px;
    background:#ffffff;
}

.installation-process .container{
    max-width:1200px;
    margin:auto;
}

/*==========================*/

.process-header{

    text-align:center;

    max-width:720px;

    margin:0 auto 60px;

}

.process-header h3{

    font-size:40px;

    color:var(--secondary-color);

    margin:18px 0;

}

.process-header p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}

/*==========================*/

.process-wrapper{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    position:relative;

}

.process-wrapper::before{

    content:"";

    position:absolute;

    left:8%;

    right:8%;

    top:34px;

    height:3px;

    background:rgba(255,196,1,.35);

    z-index:0;

}

/*==========================*/

.process-step{

    position:relative;

    z-index:2;

    background:#fff;

    padding:35px 25px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.35s;

}

.process-step:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.10);

}

.step-number{

    width:68px;

    height:68px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:var(--primary-color);

    color:#000;

    font-size:22px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    border:5px solid #fff;

    box-shadow:0 5px 15px rgba(0,0,0,.10);

}

.process-step h4{

    font-size:22px;

    margin-bottom:15px;

    color:var(--secondary-color);

}

.process-step p{

    color:#666;

    line-height:1.7;

    font-size:16px;

}

/*==========================*/

@media(max-width:1100px){

.process-wrapper{

grid-template-columns:repeat(2,1fr);

}

.process-wrapper::before{

display:none;

}

}

@media(max-width:768px){

.installation-process{

padding:60px 15px;

}

.process-header h3{

font-size:32px;

}

.process-wrapper{

grid-template-columns:1fr;

}

}


/*=====================================
FAQ
======================================*/

.faq-section{
    padding:60px 20px;
    background:#f8f8f8;
}

.faq-section .container{
    max-width:1200px;
    margin:auto;
}

.faq-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.faq-header h2{
    font-size:42px;
    margin:20px 0;
    color:var(--secondary-color);
}

.faq-header p{
    color:#666;
    line-height:1.8;
}

/*==========================*/

.faq-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.faq-column{

    display:flex;

    flex-direction:column;

    gap:18px;

}

/*==========================*/

.faq-item{

    background:#fff;

    border-radius:14px;

    border:1px solid #ececec;

    overflow:hidden;

    transition:.3s;

}

.faq-item.active{

    border-color:var(--primary-color);

}

.faq-question{

    width:100%;

    padding:22px;

    display:flex;

    align-items:center;

    gap:16px;

    border:none;

    background:none;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    text-align:left;

}

.faq-question span{

    width:42px;

    height:42px;

    min-width:42px;

    border-radius:50%;

    background:rgba(255,196,1,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:14px;

    font-weight:700;

}

.faq-question i{

    margin-left:auto;

    transition:.3s;

}

.faq-item.active i{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 22px 22px 80px;

    color:#666;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:500px;

}

/*==========================*/

@media(max-width:992px){

.faq-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.faq-header h2{

font-size:32px;

}

.faq-question{

font-size:16px;

padding:18px;

}

.faq-answer p{

padding:0 18px 18px 70px;

}

}


/*==================================
FINAL CONTACT CTA
==================================*/

.final-contact{

    padding:60px 20px;

    background:linear-gradient(135deg,#FFF9E8 0%,#FFE79A 100%);

    position:relative;

    overflow:hidden;

}

/* Decorative circles */

.final-contact::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.35);

    top:-120px;

    right:-100px;

}

.final-contact::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    bottom:-90px;

    left:-90px;

}

.final-contact .container{

    max-width:1200px;

    margin:auto;

    position:relative;

    z-index:2;

}

/*================================*/

.contact-wrapper{

    display:grid;

    grid-template-columns:1.3fr .8fr;

    gap:60px;

    align-items:center;

}

/*================================*/

.contact-left .section-tag{

    display:inline-block;

    padding:8px 18px;

    background:#fff;

    border-radius:30px;

    color:#000;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.contact-left h2{

    font-size:46px;

    line-height:1.2;

    color:#000;

    margin-bottom:22px;

}

.contact-left p{

    color:#555;

    font-size:17px;

    line-height:1.8;

    margin-bottom:35px;

}

.contact-left ul{

    list-style:none;

    padding:0;

    margin:0;

}

.contact-left ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    font-size:17px;

    font-weight:500;

    color:#222;

}

.contact-left ul li i{

    color:#000;

    font-size:18px;

}

/*================================*/

.contact-right{

    background:#fff;

    padding:35px;

    border-radius:22px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

/*================================*/

.contact-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:25px;

    border-bottom:1px solid #ececec;

}

.contact-card:last-of-type{

    border-bottom:none;

}

.contact-card i{

    width:65px;

    height:65px;

    border-radius:50%;

    background:var(--primary-color);

    color:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    margin-bottom:18px;

}

.contact-card small{

    color:#777;

    display:block;

    margin-bottom:8px;

    font-size:14px;

}

.contact-card h3{

    margin:0;

    color:#000;

    font-size:24px;

    font-weight:700;

}

/*================================*/

.estimate-btn{

    margin-top:30px;

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:18px;

    border-radius:12px;

    background:#000;

    color:#fff;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

.estimate-btn:hover{

    background:var(--primary-color);

    color:#000;

    transform:translateY(-3px);

}

.estimate-btn i{

    transition:.3s;

}

.estimate-btn:hover i{

    transform:translateX(5px);

}

/*================================*/

@media(max-width:991px){

.contact-wrapper{

    grid-template-columns:1fr;

    gap:40px;

}

.contact-left{

    text-align:center;

}

.contact-left ul{

    display:inline-block;

    text-align:left;

}

.contact-right{

    max-width:500px;

    margin:auto;

    width:100%;

}

}

/*================================*/

@media(max-width:768px){

.final-contact{

    padding:70px 15px;

}

.contact-left h2{

    font-size:34px;

}

.contact-left p{

    font-size:16px;

}

.contact-card{

    padding:20px;

}

.contact-card h3{

    font-size:18px;

    word-break:break-word;

}

.estimate-btn{

    font-size:16px;

    padding:16px;

}

}

@media(max-width:375px){

.contact-card h3{

    font-size:15px;

    word-break:break-all;

}

}