body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #f7f5f2;
    min-height: 100vh;
    color: #6c665c;
}

.hero-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.desktop-video {
    display: block;
    object-fit: cover;
}

.mobile-video {
    display: none;
}

@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }
    
    .mobile-video {
        display: block;
        object-fit: cover;
        background: black;
    }
}

.hero-button-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    display: flex;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.hero-button-container .btn {
    pointer-events: auto;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
}

.hero-button-container .btn:hover,
.hero-button-container .btn:focus {
    background: #fff;
    color: #9e907d;
}

@media (max-width: 600px) {
    .hero-button-container {
        bottom: 20px;
    }
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: #fff;
    z-index: 1;
}

.burger {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 36px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 2001;
}

.burger div {
    width: 100%;
    height: 5px;
    background: #2b261e;
    border-radius: 3px;
    transition: all 0.3s;
}

.burger.active div:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #9e907d;
}

.burger.active div:nth-child(2) {
    opacity: 0;
}

.burger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #9e907d;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    transition: right 0.3s;
    z-index: 2000;
}

.side-menu.active {
    right: 0;
}

.side-menu a {
    padding: 16px 32px;
    color: #9e907d;
    text-decoration: none;
    font-size: 1.15em;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: block;
    background: transparent;
}

.side-menu a:hover,
.side-menu a:focus {
    background: #9e907d;
    color: #fff;
    animation: bounceHover 0.6s;
    outline: none;
}

.hero-block {
    background: #9e907d;
    color: #fff;
    padding: 100px 0 60px 0;
    position: relative;
    overflow: hidden;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    min-height: 600px;
}

.hero-block .container {
    position: relative;
    z-index: 2;
}

.hero-block h1,
.brand-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-block .section-text {
    color: #f7f3ee;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.brand-text {
    color: #f7f3ee;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-block .btn {
    background: #fff;
    color: #9e907d;
    border: none;
    display: inline-block;
    margin: 0;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}

.hero-btn {
    padding: 0.4rem 1.1rem;
    font-size: 0.95rem;
    border-radius: 40px;
}

.hero-block .btn:hover,
.hero-block .btn:focus {
    background: #e8e3dc;
    color: #7d7162;
}

.hero-block .text-center {
    text-align: center !important;
}

.hero-block .d-flex.justify-content-center {
    display: flex !important;
    justify-content: center !important;
}

.hero-block .button-center,
.hero-block .text-center {
    text-align: center !important;
    display: block;
    width: 100%;
}

.hero-block .col-lg-8 .text-center {
    text-align: center !important;
}

.hero-button-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
}

.hero-block .container .col-lg-8 {
    text-align: left;
}

.hero-block .container .col-lg-8 .text-center,
.hero-block .container .col-lg-8 .d-flex.justify-content-center,
.hero-block .container .col-lg-8 .hero-button-center {
    text-align: center !important;
}

.section-heading {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: bolder;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-text {
    color: #6c665c;
    font-size: 1.1rem;
    line-height: 1.7;
}

.who-we-are-vertical {
    padding-top: 50px !important;
    padding-bottom: 500px !important;
    background: #ede8e1;
}

.lead {
    color: #6c665c;
    font-size: 1.15rem;
}

.about-fact {
    background: #fff;
    border-left: 4px solid #9e907d;
    color: #6c665c;
    box-shadow: 0 2px 12px rgba(223, 139, 22, 0.08);
}

.about-fact .fw-bold {
    color: #9e907d;
    font-size: 1.4rem;
}

.features-section {
    background: #fff;
    padding: 60px 0 30px 0;
}

.feature-card {
    background: #f7f5f2;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(158, 144, 125, 0.08);
    padding: 2rem 1.5rem;
    margin-bottom: 32px;
    text-align: center;
    border-top: 5px solid #9e907d;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(158, 144, 125, 0.18);
    transform: translateY(-6px);
}

.feature-card i {
    font-size: 2.4rem;
    color: #9e907d;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #8d8377;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.feature-card p {
    color: #6c665c;
    font-size: 1rem;
}

.testimonial-section {
    background: #9e907d;
    color: #fff;
    padding: 60px 0 40px 0;
}

.testimonial-card {
    background: #fff;
    color: #9e907d;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(158, 144, 125, 0.09);
    padding: 2rem 1.5rem;
    margin-bottom: 24px;
    font-size: 1.08rem;
    position: relative;
}

.testimonial-card .bi {
    color: #9e907d;
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
}

.testimonial-card .client-info {
    font-weight: 600;
    color: #8d8377;
    margin-top: 1.2rem;
    font-size: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #6c665c;
    margin-bottom: 1.5rem;
}

.cta-section {
    background: #fff;
    color: #9e907d;
    padding: 60px 0 40px 0;
    text-align: center;
}

.cta-section .btn {
    background: #9e907d;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}

.cta-section .btn:hover,
.cta-section .btn:focus {
    background: #7d7162;
    color: #fff;
}

.contact-bar {
    background: #9e907d;
    color: #fff;
    padding: 30px 0 20px 0;
    text-align: center;
}

.contact-bar .bi {
    color: #fff;
    margin-right: 10px;
}

.contact-bar p {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.btn-outline-brown {
    border: 2px solid #b9a48a;
    color: #b9a48a;
    background: transparent;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-brown:hover,
.btn-outline-brown:focus {
    background: #b9a48a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 105, 2, 0.3);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: #fff;
    color: #4d2d00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.service-card {
    background: #9e907d;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-badge {
    display: inline-block;
    background: rgba(158, 144, 125, 0.1);
    color: #9e907d;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(158, 144, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.work-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.work-image {
    height: 200px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.1);
}

.work-content {
    padding: 1.5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-content i {
    font-size: 2rem;
    color: #b9a48a;
    margin-bottom: 1rem;
    display: block;
}

.client-info h4 {
    font-size: 1.1rem;
    color: #8d8377;
    margin-bottom: 0.2rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #9e907d;
    margin: 0;
}

.contact-form .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #b9a48a;
    box-shadow: 0 0 0 0.2rem rgba(185, 164, 138, 0.25);
}

.contact-info p {
    margin-bottom: 15px;
    color: #6c665c;
}

.contact-info i {
    color: #9e907d;
    margin-right: 10px;
}

.about-hero {
    background-color: #9e907d;
    color: #fff;
    padding: 50px 0;
}

.about-hero .section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-hero .section-heading:after {
    background: #fff;
}

.about-hero .section-text {
    color: #f7f3ee;
}

.about-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-position {
    color: #9e907d;
    font-weight: 500;
    margin-bottom: 1rem;
    font-weight: 1000;
}

.team-social a {
    color: #8d8377;
    font-size: 1.2rem;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: #9e907d;
    transform: translateY(-3px);
}

.value-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: #9e907d;
    margin-bottom: 1.5rem;
}

.service-section {
    padding: 60px 0;
    background: transparent;
}

.service-detail-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border-left: 5px solid #9e907d;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 5px solid #9e907d;
}

.service-detail-card .service-img-col {
    flex: 1 1 300px;
    text-align: center;
}

.service-detail-card .service-img {
    width: 100%;
    max-width: 340px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(158,144,125,0.10);
    background: #e7e3dd;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-detail-card .service-content-col {
    flex: 2 1 400px;
}

.services-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #9e907d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.service-section .service-detail-card:nth-child(odd) .service-title {
    color: #9e907d;
}

.service-section .service-detail-card:nth-child(even) .service-title {
    color: #ffffff;
}

.service-icon {
    font-size: 2.5rem;
    color: #4d4444;
    margin-bottom: 1rem;
    display: inline-block;
}

@media (max-width: 991px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column !important;
        border-left: 5px solid #9e907d;
        border-right: none;
        text-align: center;
    }
    
    .service-detail-card .service-img-col,
    .service-detail-card .service-content-col {
        width: 100%;
        flex: unset;
    }
    
    .service-detail-card .service-img {
        max-width: 90vw;
    }
}

@media (max-width: 768px) {
    .side-menu {
        width: 100vw;
        right: -100vw;
    }
    
    .side-menu.active {
        right: 0;
    }
}

.service-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.service-hero p {
    font-size: 1.2rem;
    color: #f7f3ee;
    margin-bottom: 0;
}

.service-section {
    background: #ffffff;
    padding: 10px 0;
}

.service-section .service-detail-card:nth-child(odd) {
    background: #ffffff;
    color: black;
    font-size: larger;
}

.service-section .service-detail-card:nth-child(even) {
    background: #9e907d;
    color: white;
    font-size: large;
}

.circle-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.who-we-are-section {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
    min-height: 600px;
}

.our-team-bg {
    background: linear-gradient(135deg, #edeae6 0%, #b2a189 40%, #9e907d 80%, #8a795d 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-content-box {
    background: #fff;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 
        0 25px 70px rgba(158, 144, 125, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #9e907d, #b9a48a, #9e907d);
}

.faq-page h1 {
    text-align: center;
    color: #9e907d;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section:last-child {
    margin-bottom: 0;
}

.faq-section h2 {
    color: #9e907d;
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #9e907d;
    font-weight: 600;
}

.faq-section .section-title {
    color: #9e907d;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 3px solid #9e907d;
    font-weight: 500;
}

.faq-item {
    background: #f9f7f4;
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: #e8e3dc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(158, 144, 125, 0.1);
}

.faq-item.active {
    border-color: #9e907d;
    box-shadow: 0 8px 25px rgba(158, 144, 125, 0.15);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c665c;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #9e907d;
}

.faq-question.active {
    color: #9e907d;
}

.faq-question-text {
    flex: 1;
    padding-right: 20px;
}

.faq-number {
    color: #9e907d;
    font-weight: 700;
    margin-right: 15px;
    font-size: 1.2rem;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #9e907d, #b9a48a);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle::before {
    content: '+';
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
}

.faq-question.active .faq-toggle::before {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: #6c665c;
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 991px) {
    .faq-content-box {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .faq-content-box {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .faq-page h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-section h2 {
        font-size: 1.4rem;
    }
    
    .faq-section .section-title {
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-toggle::before {
        font-size: 1.3rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 15px 20px;
    }
}

.modern-contact-section {
    background: linear-gradient(135deg, #f7f5f2 0%, #ede8e1 100%);
    padding: 120px 0 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.modern-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(158, 144, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(158, 144, 125, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contact-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #9e907d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.contact-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #9e907d, #b9a48a);
    border-radius: 2px;
}

.contact-header p {
    font-size: 1.3rem;
    color: #6c665c;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info-modern {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(158, 144, 125, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 50px;
}

.contact-info-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #9e907d, #b9a48a);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding: 20px;
    background: #f9f7f4;
    border-radius: 18px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-item:hover {
    transform: translateX(8px);
    border-left-color: #9e907d;
    box-shadow: 0 8px 25px rgba(158, 144, 125, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9e907d, #b9a48a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: #fff;
}

.info-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #9e907d;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 1rem;
    color: #6c665c;
    margin: 0;
    line-height: 1.5;
}

.modern-form-container {
    background: #fff;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 
        0 25px 70px rgba(158, 144, 125, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.modern-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #9e907d, #b9a48a, #9e907d);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #9e907d;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    color: #6c665c;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-group-modern {
    margin-bottom: 35px;
    position: relative;
}

.form-control-modern {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid #e8e3dc;
    border-radius: 16px;
    font-size: 1.1rem;
    background: #fafaf9;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #6c665c;
}

.form-control-modern:focus {
    outline: none;
    border-color: #9e907d;
    background: #fff;
    box-shadow: 
        0 0 0 4px rgba(158, 144, 125, 0.1),
        0 8px 25px rgba(158, 144, 125, 0.08);
    transform: translateY(-2px);
}

.form-control-modern::placeholder {
    color: #a8a099;
    transition: all 0.3s ease;
}

.form-control-modern:focus::placeholder {
    color: transparent;
}

.textarea-modern {
    min-height: 140px;
    resize: vertical;
}

.form-label-modern {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #fff;
    padding: 0 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9e907d;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.form-control-modern:focus + .form-label-modern,
.form-control-modern:not(:placeholder-shown) + .form-label-modern {
    opacity: 1;
    transform: translateY(0);
}

.submit-btn-modern {
    background: linear-gradient(135deg, #9e907d 0%, #b9a48a 100%);
    color: #fff;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}

.submit-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(158, 144, 125, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.submit-btn-modern:hover::before {
    left: 100%;
}

.submit-btn-modern:active {
    transform: translateY(-1px);
}

.success-message {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: none;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.social-links {
    margin-top: 30px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.social-links h5 {
    color: #9e907d;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9e907d, #b9a48a);
    color: #fff !important;
    border-radius: 50%;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(158, 144, 125, 0.3);
    color: #fff !important;
}

.social-links a i {
    color: #fff !important;
    font-size: 1.3rem;
    line-height: 1;
}

.social-links a:visited,
.social-links a:focus,
.social-links a:active {
    color: #fff !important;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-modern {
        position: static;
    }
    
    .contact-header h1 {
        font-size: 3rem;
    }
    
    .modern-form-container,
    .contact-info-modern {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .modern-contact-section {
        padding: 80px 0 60px 0;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .modern-form-container,
    .contact-info-modern {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .form-control-modern {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .submit-btn-modern {
        padding: 16px 40px;
        font-size: 1rem;
    }
    
    .info-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

body:has(.modern-hero) {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.modern-hero {
    background: linear-gradient(135deg, #9e907d 0%, #b9a48a 50%, #9e907d 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #fff;
    color: #9e907d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.hero-cta i {
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(5px);
}

.section-badge {
    display: inline-block;
    background: #9e907d;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #9e907d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.light {
    color: #fff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c665c;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-section {
    padding: 120px 0;
    background: #fff;
}

.about-content {
    padding-right: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #9e907d;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c665c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(158, 144, 125, 0.15);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(158, 144, 125, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.about-image-container:hover .image-overlay {
    opacity: 1;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: #fff;
}

.overlay-content i {
    font-size: 4rem;
    margin-bottom: 10px;
    display: block;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

.services-page {
    padding: 40px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.services-content-box {
    background: #fff;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 
        0 25px 70px rgba(158, 144, 125, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.services-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #9e907d, #b9a48a, #9e907d);
}

.services-content-box h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #9e907d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.services-content-box h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #9e907d;
    margin: 1rem auto 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .services-content-box h1 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 1024px) {
    .services-content-box h1 {
        font-size: 3rem;
    }
}

.services-page h1 {
    text-align: center;
    color: #9e907d;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.services-intro {
    text-align: center;
    color: #6c665c;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-item {
    background: #f9f7f4;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    border-color: #9e907d;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(158, 144, 125, 0.15);
}

.service-item h3 {
    color: #9e907d;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #6c665c;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    color: #6c665c;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    color: #9e907d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-pricing {
    background: linear-gradient(135deg, #9e907d, #b9a48a);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, #f9f7f4, #ede7e0);
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    border: 2px solid #e8e3dc;
}

.services-cta h2 {
    color: #9e907d;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.services-cta p {
    color: #6c665c;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .services-content-box {
        padding: 40px 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-content-box {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .services-page h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .services-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .services-cta {
        padding: 40px 20px;
    }
    
    .services-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 20px 10px;
    }
    
    .services-content-box {
        padding: 20px 15px;
    }
    
    .service-item {
        padding: 25px 15px;
    }
    
    .services-cta {
        padding: 30px 15px;
    }
}

.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #9e907d, #b9a48a);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonials-section .testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: inherit;
    font-size: inherit;
    margin-bottom: 0;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonials-section .testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c665c;
    font-style: italic;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: #9e907d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.testimonials-section .client-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #9e907d;
    margin-bottom: 2px;
}

.testimonials-section .client-info span {
    font-size: 0.9rem;
    color: #6c665c;
}

.cta-section {
    padding: 120px 0;
    background: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #9e907d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: #6c665c;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #9e907d, #b9a48a);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(158, 144, 125, 0.3);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #9e907d;
    padding: 16px 32px;
    border: 2px solid #9e907d;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #9e907d;
    color: #fff;
    transform: translateY(-3px);
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: translateX(3px);
}

.contact-section {
    padding: 120px 0;
    background: #f7f5f2;
}

.contact-info {
    padding-right: 40px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9e907d, #b9a48a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    margin: 0;
    display: block;
    color: #fff;
}

.contact-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #9e907d;
    margin-bottom: 5px;
}

.contact-content p {
    color: #6c665c;
    margin: 0;
    line-height: 1.5;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(158, 144, 125, 0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e3dc;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafaf9;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #6c665c;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9e907d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(158, 144, 125, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #9e907d, #b9a48a);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(158, 144, 125, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

.footer {
    background: #9e907d !important;
    color: #fff;
}

.footer * {
    color: #fff !important;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: #9e907d !important;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.social-cta {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .modern-hero {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .about-section,
    .services-preview,
    .testimonials-section,
    .cta-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .about-image {
        height: 300px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section .testimonial-card {
        padding: 25px 20px;
    }
}