/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: #f0e7de;
    color: #1a1108;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(240, 231, 222, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(83, 73, 67, 0.12);
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 50px rgba(83, 73, 67, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #1a1108;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo span {
    color: #534943;
}

.nav-menu {
    display: flex;
    gap: 44px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #534943;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1.5px;
    background: #534943;
    transition: width 0.4s ease;
}

.nav-menu a:hover {
    color: #1a1108;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hire-btn {
    padding: 11px 26px;
    border-radius: 2px;
    background: #534943 !important;
    color: #f0e7de !important;
    font-weight: 500;
    font-size: 12px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid #534943;
}

.hire-btn::after {
    display: none !important;
}

.hire-btn:hover {
    background: #1a1108 !important;
    border-color: #1a1108 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(83, 73, 67, 0.25);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
    padding: 4px;
}

.menu-toggle span {
    height: 2px;
    width: 26px;
    background: #534943;
    margin: 4px 0;
    border-radius: 0px;
    transition: 0.4s;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    transform: scale(1.05);
    animation: zoomHero 14s ease-in-out infinite alternate;
}

@keyframes zoomHero {
    from { transform: scale(1.05); }
    to   { transform: scale(1.13); }
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(26, 17, 8, 0.82),
        rgba(26, 17, 8, 0.45)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #f0e7de;
    max-width: 700px;
    top: 50%;
    transform: translateY(-50%);
    left: 8%;
    padding-right: 5%;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 1px;
}

.line, .highlight {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.highlight {
    color: #c8a98a;
    font-weight: 600;
    font-style: italic;
}

.hero-content p {
    margin: 24px 0 36px;
    font-size: 15px;
    color: rgba(240, 231, 222, 0.75);
    max-width: 480px;
    line-height: 1.9;
    letter-spacing: 0.3px;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 34px;
    border-radius: 2px;
    background: #534943;
    color: #f0e7de;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
    border: 1px solid #534943;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #c8a98a;
    border-color: #c8a98a;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(83, 73, 67, 0.35);
}

.btn-secondary {
    padding: 14px 34px;
    border-radius: 2px;
    border: 1px solid rgba(240, 231, 222, 0.6);
    color: #f0e7de;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(240, 231, 222, 0.12);
    border-color: #f0e7de;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 20px;
    height: 38px;
    border: 1.5px solid rgba(240, 231, 222, 0.6);
    border-radius: 20px;
    transform: translateX(-50%);
}

.scroll-indicator::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 7px;
    background: #c8a98a;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0%   { opacity: 0; transform: translate(-50%, 0); }
    50%  { opacity: 1; transform: translate(-50%, 10px); }
    100% { opacity: 0; transform: translate(-50%, 20px); }
}


/* =========================================
   SERVICES SECTION
   ========================================= */

.services {
    padding: 80px 5%;
    background: #f0e7de;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background: #fff8f3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(83, 73, 67, 0.1);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(80px);
    opacity: 0;
    border: 1px solid rgba(83, 73, 67, 0.08);
}

.service-card.active {
    transform: translateY(0);
    opacity: 1;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.7s ease;
    filter: sepia(15%);
}

.service-content {
    padding: 24px 20px;
}

.service-content h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1a1108;
    letter-spacing: 0.5px;
}

.service-content p {
    font-size: 13.5px;
    color: #7a6a5f;
    line-height: 1.8;
}

.service-card:hover img {
    transform: scale(1.08);
    filter: sepia(0%);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(83, 73, 67, 0.18);
}

.services-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.btn-outline,
.btn-filled {
    padding: 14px 36px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.4s;
}

.btn-outline {
    border: 1.5px solid #534943;
    color: #534943;
    background: transparent;
}

.btn-outline:hover {
    background: #534943;
    color: #f0e7de;
    box-shadow: 0 12px 30px rgba(83, 73, 67, 0.2);
}

.btn-filled {
    background: #534943;
    color: #f0e7de;
    border: 1.5px solid #534943;
}

.btn-filled:hover {
    background: #1a1108;
    border-color: #1a1108;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 17, 8, 0.25);
}


/* =========================================
   PROJECTS SECTION
   ========================================= */

.projects {
    padding: 60px 5%;
    background: #f0e7de;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #1a1108;
    text-transform: uppercase;
    word-break: break-word;
}

.section-header p {
    color: #7a6a5f;
    margin-top: 14px;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 0 10px;
}

.project-category {
    margin-bottom: 80px;
}

.project-category h3 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #534943;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(83, 73, 67, 0.2);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    background: #1a1108;
    box-shadow: 0 20px 50px rgba(83, 73, 67, 0.12);
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card.active {
    transform: translateY(0);
    opacity: 1;
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 1s ease;
    filter: sepia(10%);
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 28px 22px;
    background: linear-gradient(to top, rgba(26, 17, 8, 0.92), transparent);
    color: #f0e7de;
    transform: translateY(100%);
    transition: 0.6s ease;
}

.overlay h4 {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
}

.overlay span {
    font-size: 12px;
    color: #c8a98a;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.project-card:hover img {
    transform: scale(1.12);
    filter: sepia(0%);
}

.project-card:hover .overlay {
    transform: translateY(0);
}

.center-btn {
    text-align: center;
    margin-top: 55px;
}


/* =========================================
   ABOUT SECTION
   ========================================= */

.about {
    padding: 80px 5% 100px;
    background: #f0e7de;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 22px;
    line-height: 1.2;
    letter-spacing: 1px;
    color: #1a1108;
}

.about-content h2 span {
    background: linear-gradient(135deg, #534943, #c8a98a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.about-content p {
    color: #7a6a5f;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin: 44px 0;
    flex-wrap: wrap;
}

.stat-box h3 {
    font-size: 38px;
    color: #534943;
    font-weight: 600;
}

.stat-box span {
    font-size: 12px;
    color: #7a6a5f;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-image img {
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 30px 80px rgba(83, 73, 67, 0.18);
    filter: sepia(8%);
    transition: 0.5s;
}

.about-image img:hover {
    filter: sepia(0%);
}

.btn-about {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 2px;
    background: #534943;
    color: #f0e7de;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
    border: 1px solid #534943;
}

.btn-about:hover {
    background: #1a1108;
    border-color: #1a1108;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(83, 73, 67, 0.25);
}

.reveal {
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}


/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials {
    padding: 80px 5%;
    background: #ece0d5;
}

.testimonial-slider {
    overflow: hidden;
    margin-top: 60px;
}

.testimonial-track {
    display: flex;
    gap: 28px;
    transition: transform 0.6s ease;
}

.testimonial-card {
    min-width: 340px;
    background: #fff8f3;
    border-radius: 4px;
    padding: 32px 28px;
    box-shadow: 0 15px 50px rgba(83, 73, 67, 0.1);
    transition: 0.4s;
    position: relative;
    border: 1px solid rgba(83, 73, 67, 0.08);
    flex-shrink: 0;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 18px;
    right: 26px;
    font-size: 80px;
    color: rgba(83, 73, 67, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(83, 73, 67, 0.15);
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.client img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c8a98a;
    filter: sepia(10%);
    flex-shrink: 0;
}

.client h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1108;
}

.client span {
    font-size: 12px;
    color: #7a6a5f;
    letter-spacing: 0.5px;
}

.testimonial-card p {
    font-size: 14px;
    color: #6b5a50;
    line-height: 1.8;
    margin-bottom: 22px;
}

.stars {
    color: #c8a98a;
    font-size: 15px;
    letter-spacing: 3px;
}

.slider-buttons {
    margin-top: 44px;
    text-align: center;
}

.slider-buttons button {
    background: #534943;
    border: none;
    color: #f0e7de;
    padding: 13px 20px;
    margin: 0 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    line-height: 1;
}

.slider-buttons button:hover {
    background: #1a1108;
    transform: scale(1.08);
}


/* =========================================
   CONTACT SECTION
   ========================================= */

.contact {
    padding: 80px 5%;
    background: #1a1108;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f0e7de;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.contact::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(200, 169, 138, 0.06);
    pointer-events: none;
}

.contact::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(83, 73, 67, 0.15);
    pointer-events: none;
}

.contact-box {
    max-width: 650px;
    width: 100%;
    text-align: center;
    padding: 60px 50px;
    border-radius: 4px;
    background: rgba(240, 231, 222, 0.05);
    border: 1px solid rgba(240, 231, 222, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.contact-box h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #f0e7de;
    text-transform: uppercase;
    word-break: break-word;
}

.contact-box p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(240, 231, 222, 0.7);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 22px;
}

.contact-details p {
    font-size: 13px;
    margin-bottom: 7px;
    opacity: 0.85;
    letter-spacing: 0.5px;
    word-break: break-word;
}

.contact-details::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    margin: 28px auto;
    background: rgba(200, 169, 138, 0.4);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(240, 231, 222, 0.08);
    border: 1px solid rgba(240, 231, 222, 0.14);
    color: #f0e7de;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #c8a98a;
    border-color: #c8a98a;
    color: #1a1108;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(200, 169, 138, 0.3);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: #534943;
    color: #f0e7de;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(83, 73, 67, 0.35);
    transition: 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #c8a98a;
    box-shadow: 0 20px 50px rgba(200, 169, 138, 0.4);
}


/* =========================================
   SERVICES DETAIL PAGE
   ========================================= */

.services-detail {
    padding: 100px 5%;
    background: #f0e7de;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse .service-text {
    direction: ltr;
}

.service-img {
    overflow: hidden;
    border-radius: 3px;
}

.service-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 1s ease;
    filter: sepia(12%);
}

.service-img:hover img {
    transform: scale(1.06);
    filter: sepia(0%);
}

.service-text h3 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 14px;
    color: #1a1108;
    letter-spacing: 1px;
}

.service-text p {
    font-size: 14.5px;
    color: #6b5a50;
    line-height: 2;
}

.more-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.more-text.active {
    max-height: 900px;
    opacity: 1;
    margin-top: 12px;
}

.read-more {
    margin-top: 22px;
    padding: 13px 28px;
    border-radius: 2px;
    border: none;
    background: #534943;
    color: #f0e7de;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
}

.read-more:hover {
    background: #1a1108;
    transform: translateX(5px);
}


/* =========================================
   PORTFOLIO PAGE
   ========================================= */

.portfolio {
    padding: 100px 5%;
    background: #f0e7de;
}

.portfolio-category {
    margin-bottom: 60px;
}

.portfolio-category h3 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #534943;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.portfolio img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.5s;
    filter: sepia(15%);
}

.portfolio img:hover {
    transform: scale(1.03);
    filter: sepia(0%);
}

.portfolio-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.portfolio-scroll img {
    width: 150px;
    height: 110px;
    flex-shrink: 0;
}

.portfolio-scroll::-webkit-scrollbar { display: none; }

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 17, 8, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 9999;
    padding: 20px;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    transform: scale(0.95);
    transition: 0.4s;
}

.popup.active img {
    transform: scale(1);
}

.close {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 28px;
    color: #c8a98a;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #f0e7de;
}


/* =========================================
   ABOUT PAGE
   ========================================= */

.about-page {
    padding: 100px 5%;
    background: #f0e7de;
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 50px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1a1108, #534943);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    word-break: break-word;
}

.about-hero p {
    color: #7a6a5f;
    margin-top: 14px;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 0 10px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

.about-img {
    overflow: hidden;
    border-radius: 3px;
}

.about-img img {
    width: 100%;
    transition: 0.6s;
    filter: sepia(10%);
}

.about-img:hover img {
    transform: scale(1.04);
    filter: sepia(0%);
}

.about-text h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 18px;
    color: #1a1108;
    letter-spacing: 0.5px;
}

.about-text p {
    color: #6b5a50;
    line-height: 1.95;
    margin-bottom: 14px;
    font-size: 14.5px;
}

.about-services {
    margin-bottom: 100px;
}

.about-services h2 {
    text-align: center;
    margin-bottom: 55px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #534943;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-box {
    padding: 32px 26px;
    border-radius: 3px;
    background: #fff8f3;
    box-shadow: 0 10px 40px rgba(83, 73, 67, 0.08);
    border: 1px solid rgba(83, 73, 67, 0.08);
    transition: 0.4s;
    text-align: left;
}

.service-box h3 {
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 500;
    color: #1a1108;
}

.service-box p {
    font-size: 13.5px;
    color: #7a6a5f;
    line-height: 1.8;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(83, 73, 67, 0.14);
    border-color: rgba(83, 73, 67, 0.16);
}

.about-experience {
    text-align: center;
    margin: 100px 0;
}

.about-experience h2 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #534943;
    margin-bottom: 22px;
}

.about-experience p {
    max-width: 720px;
    margin: auto;
    color: #6b5a50;
    line-height: 1.95;
    font-size: 15px;
    padding: 0 10px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 52px;
    font-weight: 300;
    background: linear-gradient(135deg, #534943, #c8a98a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box p {
    margin-top: 10px;
    color: #7a6a5f;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-team {
    text-align: center;
    max-width: 720px;
    margin: auto;
    padding: 0 10px;
}

.about-team h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 18px;
    color: #1a1108;
}

.about-team p {
    color: #6b5a50;
    line-height: 1.95;
    font-size: 15px;
}


/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.contact-left h2 {
    font-size: 42px;
    color: #f0e7de;
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: 1.5px;
    word-break: break-word;
}

.contact-left p {
    color: rgba(240, 231, 222, 0.75);
    line-height: 1.95;
    font-size: 14.5px;
}

.contact-right {
    background: rgba(240, 231, 222, 0.07);
    backdrop-filter: blur(14px);
    padding: 44px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    border: 1px solid rgba(240, 231, 222, 0.12);
}

.contact-right h3 {
    color: #f0e7de;
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 2px;
    background: #c8a98a;
    color: #1a1108;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.4s;
}

.contact-btn:hover {
    background: #f0e7de;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}


/* =========================================
   FOOTER
   ========================================= */

.footer-credit {
    text-align: center;
    padding: 24px 16px;
    background: #0d0804;
    color: rgba(240, 231, 222, 0.5);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    word-break: break-word;
}

.footer-credit a {
    color: #c8a98a;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer-credit a:hover {
    color: #f0e7de;
}


/* =========================================
   RESPONSIVE — TABLET (max-width: 1100px)
   ========================================= */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        gap: 50px;
    }
}


/* =========================================
   RESPONSIVE — MOBILE MENU (max-width: 900px)
   ========================================= */

@media (max-width: 900px) {

    /* NAV */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background: #f0e7de;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transition: 0.5s ease;
        box-shadow: -10px 0 60px rgba(83, 73, 67, 0.18);
        z-index: 1050;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 15px;
    }

    /* HERO */
    .hero-content {
        left: 5%;
        right: 5%;
        padding-right: 0;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        max-width: 100%;
    }

    /* SERVICES */
    .services {
        padding: 70px 5%;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    /* PROJECTS */
    .section-header h2 {
        font-size: 32px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .project-card img {
        height: 250px;
    }

    /* ABOUT */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-stats {
        flex-direction: column;
        gap: 22px;
    }

    /* SERVICE DETAIL */
    .service-row {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 70px;
        direction: ltr;
    }

    .service-row.reverse {
        direction: ltr;
    }

    .service-img img {
        height: 260px;
    }

    .service-text h3 {
        font-size: 24px;
    }

    /* ABOUT PAGE */
    .about-hero h1 {
        font-size: 34px;
        letter-spacing: 2px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 70px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .service-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-box {
        padding: 26px;
    }

    .about-stats {
        flex-direction: column;
        gap: 36px;
        margin-bottom: 70px;
    }

    .stat-box h3 {
        font-size: 44px;
    }

    .about-experience {
        margin: 70px 0;
    }

    .about-team h2 {
        font-size: 26px;
    }

    /* CONTACT PAGE */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-left h2 {
        font-size: 30px;
    }

    .contact-right {
        padding: 32px;
    }

    /* TESTIMONIALS */
    .testimonial-card {
        min-width: 280px;
    }
}


/* =========================================
   RESPONSIVE — SMALL MOBILE (max-width: 600px)
   ========================================= */

@media (max-width: 600px) {

    /* NAV */
    .nav-container {
        padding: 16px 4%;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .nav-menu {
        width: 85%;
        max-width: 280px;
        gap: 30px;
    }

    /* HERO */
    .hero-content {
        left: 4%;
        right: 4%;
    }

    .hero-content h1 {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .hero-content p {
        font-size: 14px;
        margin: 18px 0 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 13px 28px;
        font-size: 12px;
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    /* SERVICES */
    .services {
        padding: 60px 4%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 40px;
    }

    .btn-outline,
    .btn-filled {
        min-width: 0;
        width: 100%;
        max-width: 280px;
        padding: 13px 20px;
    }

    /* PROJECTS */
    .projects {
        padding: 50px 4%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .project-card img {
        height: 220px;
    }

    .overlay h4 {
        font-size: 15px;
    }

    /* ABOUT */
    .about {
        padding: 60px 4% 80px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .stat-box h3 {
        font-size: 34px;
    }

    .btn-about {
        padding: 13px 28px;
        font-size: 12px;
        width: 100%;
        max-width: 260px;
        text-align: center;
        display: block;
    }

    /* SERVICES DETAIL */
    .services-detail {
        padding: 80px 4%;
    }

    .service-img img {
        height: 220px;
    }

    .service-text h3 {
        font-size: 22px;
    }

    .service-text p {
        font-size: 14px;
    }

    /* PORTFOLIO */
    .portfolio {
        padding: 80px 4%;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio img {
        height: 200px;
    }

    .portfolio-scroll img {
        width: 130px;
        height: 95px;
    }

    /* ABOUT PAGE */
    .about-page {
        padding: 80px 4%;
    }

    .about-hero {
        margin-bottom: 55px;
    }

    .about-hero h1 {
        font-size: 26px;
        letter-spacing: 1.5px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-stats {
        gap: 28px;
    }

    .stat-box h3 {
        font-size: 40px;
    }

    .about-experience p {
        font-size: 14px;
    }

    .about-team h2 {
        font-size: 22px;
    }

    .about-team p {
        font-size: 14px;
    }

    /* TESTIMONIALS */
    .testimonials {
        padding: 60px 4%;
    }

    .testimonial-slider {
        margin-top: 40px;
    }

    .testimonial-card {
        min-width: calc(100vw - 8% - 28px);
        padding: 24px 20px;
    }

    /* CONTACT */
    .contact {
        padding: 60px 4%;
    }

    .contact-box {
        padding: 36px 22px;
    }

    .contact-box h2 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .contact-box p {
        font-size: 13px;
    }

    .contact-details p {
        font-size: 12px;
    }

    /* CONTACT PAGE */
    .contact-left h2 {
        font-size: 26px;
    }

    .contact-left p {
        font-size: 14px;
    }

    .contact-right {
        padding: 26px 18px;
    }

    .contact-btn {
        padding: 13px 24px;
        font-size: 12px;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* FOOTER */
    .footer-credit {
        font-size: 11px;
        padding: 20px 16px;
        letter-spacing: 0.8px;
    }

    /* WHATSAPP FLOAT */
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}


/* =========================================
   RESPONSIVE — EXTRA SMALL (max-width: 380px)
   ========================================= */

@media (max-width: 380px) {

    .logo {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .contact-box h2 {
        font-size: 22px;
    }

    .about-hero h1 {
        font-size: 22px;
    }

    .testimonial-card {
        min-width: calc(100vw - 8%);
        padding: 20px 16px;
    }

    .testimonial-card::before {
        font-size: 60px;
    }

    .stat-box h3 {
        font-size: 36px;
    }
}