/* ========================================
   Kitchen Design Website - Exact Design Match
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --bg-dark: #2c3e50;
    --bg-darker: #243342;
    --bg-darkest: #1a2730;
    --accent-orange: #d4943a;
    --accent-orange-hover: #c4842a;
    --text-white: #ffffff;
    --text-gray: #a0aab4;
    --text-light: #c5cdd5;
    --border-gray: #4a5a6a;
    --card-bg: #354555;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}


/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background-color: #23262d;
    /*padding: 10px 0;*/
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: var(--text-white);
    font-size: 12px;
}

.social-icons a:hover {
    color: var(--accent-orange);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info span {
    color: var(--text-gray);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--text-white);
}

.btn-appointment {
    background-color: var(--accent-orange);
    color: #ffffff;
    padding: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-appointment:hover {
    background-color: var(--accent-orange-hover);
}

/* ========================================
   MAIN NAVIGATION
   ======================================== */
.main-nav {
    position: absolute;
    top: 44px;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(26, 39, 48, 0.98);
    backdrop-filter: blur(10px);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-menu li a {
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s;
}

.nav-menu li a:hover {
    color: var(--text-white);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a.active {
    color: var(--text-white);
}

.nav-menu li a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-right a {
    color: var(--text-white);
    font-size: 15px;
}

.nav-right a:hover {
    color: var(--accent-orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    max-width: 650px;
    width: 90%;
}

.hero-content h1 {
    font-family: 'Poppins', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-content p {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-white);
    color: #1a1a1a;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--accent-orange);
}

.slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}

.slider-dots .dot.active {
    background: var(--text-white);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: #23262d;
    padding: 90px 0 70px;
}

.about-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.experience-box {
    position: relative;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Left bracket [ */
.experience-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40px;
    border-left: 7px solid var(--border-gray);
    border-top: 7px solid var(--border-gray);
    border-bottom: 7px solid var(--border-gray);
    border-radius: 4px 0 0 4px;
}

/* Right bracket ] */
.experience-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    border-right: 7px solid var(--border-gray);
    border-top: 7px solid var(--border-gray);
    border-bottom: 7px solid var(--border-gray);
    border-radius: 0 4px 4px 0;
}

.experience-box .number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: #d4943a;
}

.experience-box .text {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

.about-middle {
    max-width: 380px;
}

.section-label {
    color: var(--accent-orange);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.how-section .section-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.about-middle h2 {
    font-family: 'Poppins', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
}

.about-right {
    max-width: 320px;
}

.about-right p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #393b45;
    color: var(--text-white);
    padding: 13px 26px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-dark:hover {
    background: var(--accent-orange);
    color: #1a1a1a;
}

/* Collection Cards */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.collection-card {
    position: relative;
    height: 360px;
    border-radius: 5px;
    overflow: hidden;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7));
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.collection-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.collection-card .read-more {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-section {
    background: #3a414b;
    padding: 50px 0px;
}

.how-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
}

.how-left h2 {
    font-family: 'Poppins', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.how-left {
    max-width: 50%;
    padding: 50px 0px;
}

.how-right {
    max-width: 50%;
}

.how-right p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    padding: 5%;
}
.how-image {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 45px;
}

.how-image img {
    width: 100%;
    /*height: 350px;*/
    object-fit: cover;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

.step-item {
    /*display: flex;
    align-items: flex-start;
    gap: 10px;*/
}

.step-item .num {
    font-size: 90px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.35;
    line-height: 1;
}

.step-item h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-section {
    background: var(--bg-darker);
    position: relative;
    overflow: visible;
}

.why-content {
    display: flex;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.why-info {
    flex: 1.1;
    background: #23262d;
    padding: 40px 50px 40px 0;
    position: relative;
}

.why-info-inner {
    position: relative;
    padding: 35px;
    border-top: 1px solid var(--accent-orange);
    border-right: 1px solid var(--accent-orange);
    border-bottom: 1px solid var(--accent-orange);
}

.why-info .section-label {
    position: relative;
    z-index: 1;
}

.why-info h2 {
    font-family: 'Poppins', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: var(--accent-orange);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
    position: relative;
    z-index: 1;
}

.feature-item h4 {
    color: var(--accent-orange);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 12px;
    line-height: 1.65;
}

.vertical-text {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 28px;
    font-weight: 600;
    color: var(--border-gray);
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects-section {
    background: #3a414b;
    padding: 70px 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 45px;
}

.projects-header h2 {
    font-family: 'Poppins', serif;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 12px;
}

.projects-header p {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
}

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

.project-item {
    border-radius: 5px;
    overflow: hidden;
}

.project-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   CTA SECTION (Stunning Kitchens)
   ======================================== */
.cta-section {
    background: #23262d;
    padding: 70px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 70px;
}

.cta-image {
    flex: 1.2;
    position: relative;
}

.cta-image img {
    width: 100%;
    border-radius: 5px;
}

.cta-image::before {
    content: '';
    position: absolute;
    left: -12px;
    bottom: -12px;
    width: 70px;
    height: 110px;
    background: linear-gradient(to bottom, #c4853a, #8b5a30);
    border-radius: 3px;
    z-index: -1;
}

.cta-info {
    flex: 1;
}

.cta-info h2 {
    font-family: 'Poppins', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.cta-info p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: #ffffff;
    padding: 13px 26px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-orange:hover {
    background: var(--accent-orange-hover);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background: #23262d;
    padding: 80px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-family: 'Poppins', serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
}

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

.testimonial-card {
    background: #383a46;
    padding: 32px;
    border-radius: 5px;
}

.quote-icon {
    color: var(--accent-orange);
    font-size: 32px;
    margin-bottom: 15px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: var(--text-gray);
}

/* ========================================
   METHOD SECTION
   ======================================== */
.method-section {
    background: #23262d;
    padding: 55px 0 70px;
}

.method-content {
    display: flex;
    margin-bottom: 55px;
}

.method-info {
    flex: 1;
    background: #383a46;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-info h2 {
    font-family: 'Poppins', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

.method-info p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.method-image {
    flex: 1.4;
}

.method-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.stats-grid {
    display: flex;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 0 45px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 45px;
    background: var(--border-gray);
}

.stat-item .num {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
}

.stat-item span {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 6px;
}

/* ========================================
   DREAM CTA SECTION
   ======================================== */
.dream-section {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('images/img1.jpg') center/cover no-repeat;
    padding: 90px 0;
    text-align: center;
}

.dream-section .section-label {
    margin-bottom: 12px;
}

.dream-section h2 {
    font-family: 'Poppins', serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
}

.btn-outline-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--text-white);
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-outline-orange:hover {
    background: var(--accent-orange);
    color: #1a1a1a;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-darkest);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    margin-bottom: 45px;
}

.footer-logo .logo {
    margin-bottom: 18px;
    display: block;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    font-size: 20px;
    color: var(--accent-orange);
}

.footer-contact .phone {
    font-size: 17px;
    font-weight: 600;
}

.footer-contact .time {
    font-size: 11px;
    color: var(--accent-orange);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    color: var(--text-white);
    font-size: 13px;
}

.footer-social a:hover {
    color: var(--accent-orange);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-orange);
}

.footer-col p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    background: #424858;
    border: none;
    padding: 10px 14px;
    color: var(--text-white);
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-form button {
    background-color: #424858 !important;
    color: #d4943a !important;
    border: none;
    padding: 10px 16px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #d4943a  !important;
    color: #ffffff  !important;
}

.footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 12px;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 1000;
    padding: 60px 30px;
    transition: right 0.3s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 26px;
    color: var(--text-white);
    cursor: pointer;
}

.mobile-menu ul li {
    margin-bottom: 16px;
}

.mobile-menu ul li a {
    color: var(--text-white);
    font-size: 15px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   DROPDOWN MENU
   ======================================== */
.nav-menu li.has-dropdown {
    position: relative;
}

.nav-menu li.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-white);
    min-width: 180px;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.nav-menu li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li.has-dropdown .dropdown li {
    margin: 0;
}

.nav-menu li.has-dropdown .dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--bg-dark);
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
}

.nav-menu li.has-dropdown .dropdown li a:hover {
    color: var(--accent-orange);
    background: #f5f5f5;
}

.nav-menu li.has-dropdown .dropdown li a::after {
    display: none;
}

/* ========================================
   ABOUT PAGE - HERO SECTION
   ======================================== */
.about-hero {
    background: #23262d;
    padding: 140px 0 80px;
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-hero-left {
    flex: 1;
}

.about-hero-left h1 {
    font-family: 'Poppins', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
}

.about-hero-left p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 12px 26px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-white-outline:hover {
    background: var(--text-white);
    color: var(--bg-darkest);
}

.about-hero-right {
    flex: 1.2;
}

.video-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button i {
    font-size: 20px;
    color: var(--bg-darkest);
    margin-left: 4px;
}

.play-button:hover {
    background: var(--accent-orange);
}

.play-button:hover i {
    color: var(--text-white);
}

/* ========================================
   ABOUT PAGE - PHILOSOPHY SECTION
   ======================================== */
.philosophy-section {
    background: #383a46;
}

.philosophy-content {
    display: flex;
}

.philosophy-left {
    flex: 1;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/img15.png') center/cover;
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.philosophy-left-inner {
    text-align: center;
    width: 100%;
}

.philosophy-left h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.philosophy-left p {
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 25px;
}

.philosophy-right {
    flex: 1.3;
    padding: 60px 50px;
}

.philosophy-label {
    color: var(--accent-orange);
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.philosophy-right h3 {
    font-family: 'Poppins', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}

.philosophy-right p {
    color: var(--text-white);
    font-size: 13px;
    line-height: 1.8;
}

/* ========================================
   ABOUT PAGE - QUOTE SECTION
   ======================================== */
.quote-section {
    background: #23262d;
    padding: 100px 0;
}

.quote-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 60px;
    color: var(--text-gray);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-open {
    margin-bottom: 20px;
}

.quote-close {
    margin-top: 20px;
    transform: rotate(180deg);
    display: inline-block;
}

.quote-content blockquote {
    font-family: 'Poppins', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-white);
}

.quote-author {
    margin-top: 40px;
}

.quote-author h4 {
    font-family: 'Poppins', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
}

.quote-author span {
    color: var(--text-gray);
    font-size: 14px;
}

/* ========================================
   ABOUT PAGE - PILLARS SECTION
   ======================================== */
.pillars-section {
    background: #383a46;
    padding: 80px 0;
}

.pillars-title {
    font-family: 'Poppins', serif;
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: #c08839;
}

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

.pillar-card {
    background: var(--bg-darkest);
    padding: 40px 35px;
    border-radius: 6px;
    text-align: center;
}

.pillar-icon {
    margin-bottom: 20px;
}

.pillar-icon i {
    font-size: 40px;
    color: var(--accent-orange);
}

.pillar-card h3 {
    font-family: 'Poppins', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.pillar-card p {
    color: var(--text-white);
    font-size: 13px;
    line-height: 1.7;
}

/* ========================================
   CONCEPTS PAGE - HERO SECTION
   ======================================== */
.concepts-hero {
    position: relative;
    height: 300px;
    background: url('images/img16.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.concepts-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 88%);
}

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

.concepts-hero h1 {
    font-family: 'Poppins', serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
}

/* ========================================
   CONCEPTS PAGE - GRID SECTION
   ======================================== */
.concepts-grid-section {
    background: #23262d;
    padding: 50px 0 70px;
}

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

.concept-card {
    text-align: center;
}

.concept-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}

.concept-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s;
}

.concept-card:hover .concept-image img {
    transform: scale(1.05);
}

.concept-card h3 {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

/* ========================================
   CONCEPTS PAGE - INDIVIDUAL CTA
   ======================================== */
.individual-cta {
    position: relative;
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920') center/cover no-repeat;
}

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

.individual-cta .container {
    position: relative;
    z-index: 1;
}

.individual-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.individual-cta h2 {
    font-family: 'Poppins', serif;
    font-size: 38px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-white);
}

.individual-cta p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
}

/* ========================================
   CONTACT PAGE - HERO SECTION
   ======================================== */
.contact-hero {
    position: relative;
    height: 280px;
    display: flex;
}

.contact-hero-left {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-hero-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 74%);
    z-index: 1;
}

.contact-hero-right {
    width: 50%;
    height: 100%;
    background: #655d5a;
    position: relative;
    overflow: hidden;
}

.contact-hero-right::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    /*background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.8) 100%);*/
    /*transform: rotate(-20deg);*/
        background: linear-gradient(96deg, transparent 0%, #645d59b3 50%, #645d59b3 100%);
    transform: rotate(128deg);
}

.contact-hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    z-index: 10;
}

/* ========================================
   CONTACT PAGE - FORM SECTION
   ======================================== */
.contact-form-section {
    background: #23262d;
    padding: 80px 0;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-header h2 {
    font-family: 'Poppins', serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-white);
}

.contact-form-header p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-content {
    display: flex;
    gap: 60px;
}

.contact-form-left {
    flex: 2;
}

.contact-form-right {
    flex: 1;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
}

.contact-form .form-group.full-width {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #23262d;
    border: 2px solid #50545c;
    padding: 15px 18px;
    color: var(--text-white);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-gray);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.contact-form select option {
    background: var(--bg-darker);
    color: var(--text-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-orange);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: var(--accent-orange);
    color: var(--bg-darkest);
    border: none;
    padding: 15px 45px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--accent-orange-hover);
}

/* Contact Form Right Sidebar */
.social-follow {
    margin-bottom: 40px;
}

.social-follow h3,
.subscribe-box h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-white);
}

.social-icons-large {
    display: flex;
    gap: 15px;
}

.social-icons-large a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 18px;
    transition: all 0.3s;
}

.social-icons-large a:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.subscribe-box p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.subscribe-form {
    display: flex;
    margin-bottom: 20px;
}

.subscribe-form input {
    flex: 1;
    background: #23262d;
    border: 2px solid #50545c;
    padding: 12px 15px;
    color: var(--text-white);
    font-size: 13px;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.subscribe-form input::placeholder {
    color: var(--text-gray);
}

.subscribe-form button {
    background: #23262d;
    border: 2px solid #50545c;
    border-left: none;
    padding: 12px 18px;
    color: var(--text-white);
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s;
}

.subscribe-form button:hover {
    color: var(--accent-orange);
}

.join-team {
    font-size: 13px;
}

.join-team a {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* ========================================
   CONTACT PAGE - SHOWROOM SECTION
   ======================================== */
.showroom-section {
    background: #2e3138;
}

.showroom-content {
    display: flex;
}

.showroom-info {
    flex: 1;
    padding: 60px 50px;
    background: #2e3138;
}

.showroom-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-white);
}

.showroom-address {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.get-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-size: 14px;
    margin-bottom: 25px;
}

.get-directions i {
    font-size: 16px;
}

.get-directions:hover {
    text-decoration: underline;
}

.showroom-contact p {
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 5px;
}

.showroom-map {
    flex: 2;
    min-height: 300px;
}

.showroom-map iframe {
    width: 100%;
    height: 100%;
}

/* ========================================
   FIND YOUR STYLE PAGE - HERO SECTION
   ======================================== */
.style-hero {
    position: relative;
    height: 320px;
    display: flex;
    flex-direction: column;
}

.style-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.style-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.style-hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.style-hero-content h1 {
    font-family: 'Poppins', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.style-tabs {
    position: relative;
    z-index: 1;
    background: transparent;
}

.main-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.main-tabs li a {
    display: block;
    padding: 18px 50px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s;
    position: relative;
}

.main-tabs li a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s;
}

.main-tabs li a:hover,
.main-tabs li a.active {
    color: var(--text-white);
}

.main-tabs li a.active::after {
    width: 100%;
}

/* ========================================
   FIND YOUR STYLE PAGE - CONTENT SECTION
   ======================================== */
.style-content-section {
    background: #23262d;
    padding: 50px 0 80px;
}

.style-intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 40px;
}

.style-intro p {
    color: var(--text-white);
    font-size: 13px;
    line-height: 1.8;
}

.sub-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.sub-tabs li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.sub-tabs li a:hover,
.sub-tabs li a.active {
    color: var(--text-white);
    border-bottom-color: var(--text-white);
}

.style-product {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.style-product-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.style-product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.style-product-info {
    flex: 1;
    padding-top: 20px;
}

.style-product-info p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.8;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .about-top {
        flex-wrap: wrap;
        gap: 30px;
    }

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

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

    .how-top {
        flex-direction: column;
    }

    .how-left,
    .how-right {
        max-width: 100%;
    }

    .step-item .num {
        font-size: 60px;
    }

    .why-content {
        flex-direction: column;
    }

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

    .cta-content {
        flex-direction: column;
        gap: 40px;
    }

    .method-content {
        flex-direction: column;
    }

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

    .vertical-text {
        display: none;
    }

    /* About Page Responsive */
    .about-hero-content {
        flex-direction: column;
    }

    .philosophy-content {
        flex-direction: column;
    }

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

    /* Concepts Page Responsive */
    .concepts-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Page Responsive */
    .contact-hero {
        flex-direction: column;
        height: auto;
    }

    .contact-hero-left,
    .contact-hero-right {
        height: 200px;
    }

    .contact-form-content {
        flex-direction: column;
    }

    .showroom-content {
        flex-direction: column;
    }

    /* Find Your Style Page Responsive */
    .main-tabs li a {
        padding: 15px 30px;
    }

    .style-product {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-nav {
        top: 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .about-top {
        flex-direction: column;
    }

    .collections-grid,
    .steps-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 25px;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social,
    .footer-contact {
        justify-content: center;
    }

    .how-section {
        padding: 30px 15px;
    }

    .how-section .section-label {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .how-left h2 {
        font-size: 24px;
    }

    .how-left {
        padding: 20px 0;
    }

    .how-right p {
        font-size: 14px;
        padding: 0;
    }

    .step-item {
        overflow: visible;
        position: relative;
    }

    .step-item .num {
        font-size: 50px;
    }

    .step-item h4 {
        font-size: 16px;
    }

}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 28px !important;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ========================================
   PROJECTS PAGE
   ======================================== */

/* Portfolio Hero Section */
.portfolio-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.portfolio-hero-left,
.portfolio-hero-right {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.portfolio-hero-left img,
.portfolio-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 79%);
    z-index: 1;
}

.portfolio-hero h1 {
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 4px;
}

/* Projects Content Section */
.projects-content {
    background-color: #272a31;
    padding: 60px 0 80px;
}

/* Filter Tabs */
.project-filter-tabs {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #76787b;
    background: transparent;
    color: #76787b;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.filter-btn.active {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--bg-darkest);
}

.btn-showroom {
    margin-left: auto;
    padding: 12px 25px;
    border: 2px solid #7d7f81;
    color: #7d7f81;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-showroom:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* Project Details */
.project-details {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.project-info {
    flex: 1;
}

.project-info h2 {
    font-family: 'Poppins', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 25px;
}

.project-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Project Meta */
.project-meta {
    margin-bottom: 40px;
}

.meta-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    color: var(--text-white);
    font-size: 13px;
    font-weight: 500;
}

.meta-value {
    color: var(--text-gray);
    font-size: 13px;
}

/* Next Project Button */
.btn-next-project {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #383a46;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    border-radius: 25px;
}

.btn-next-project:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* Project Gallery */
.project-gallery {
    flex: 1;
    max-width: 500px;
}

.gallery-main {
    position: relative;
    margin-bottom: 20px;
}

.gallery-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(212, 148, 58, 0.9);
    border: none;
    color: var(--text-white);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: var(--accent-orange);
}

.gallery-prev {
    left: -20px;
}

.gallery-next {
    right: -20px;
}

/* Visit Showroom Button */
.btn-visit-showroom {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--accent-orange);
    color: var(--bg-darkest);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    float: right;
    border-radius: 25px;
}

.btn-visit-showroom:hover {
    background-color: var(--accent-orange-hover);
}

/* Projects Page Responsive */
@media (max-width: 992px) {
    .project-details {
        flex-direction: column;
    }

    .project-gallery {
        max-width: 100%;
        width: 100%;
    }

    .project-info h2 {
        font-size: 36px;
    }

    .meta-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .portfolio-hero h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .project-filter-tabs {
        justify-content: center;
    }

    .btn-showroom {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 11px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .btn-visit-showroom {
        float: none;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .portfolio-hero {
        height: 200px;
    }

    .portfolio-hero h1 {
        font-size: 24px;
    }

    .project-info h2 {
        font-size: 28px;
    }

    .project-filter-tabs {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 12px;
        font-size: 10px;
    }
}

.testimonial-card i.fa-solid.fa-quote-left,.quote-section .fa-quote-left,.quote-section .fa-quote-right{
    font-size:35px;
}


.method-section .btn-orange{
    width: 50%;
    font-size: 13px;
}

.dream-section .btn-outline-orange{
    background-color: #d4943a !important;
}
.btn-outline-orange:hover{
    color: #ffffff !important;
}

.padd_bottom{
    padding-bottom: 10%;
}


.footer {
    position: relative;
    background: url(images/img1.png)
                center / cover no-repeat;
    padding: 90px 0;
    text-align: center;
    z-index: 1;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #35363bf2; /* overlay color */
    z-index: -1;  /* keeps your content above the overlay */
}
.footer-col {
    text-align: left;
}


.philosophy-left {
    position: relative;
    background: url(images/img15.png)
                center / cover no-repeat;
    padding: 90px 0;
    text-align: center;
    z-index: 1;
}

.philosophy-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 83%); /* overlay color */
    z-index: -1;  /* keeps your content above the overlay */
}
.footer a.btn-outline-orange {
    background-color:#d4943a;
}

.text_center{
    display: flex;
    justify-content: center;
}
.padd_top{
    padding-top: 10%;
}
.text_center_d{
        display: flex;
    flex-direction: column;
    align-items: center;
}
.text_center_d a.btn-white {
    background-color: #d4943a;
}
.section_bg{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/bg2.png') center/cover;
}
.imfg_bg3{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/bg3.png') center/cover;
}

.hide_1_button,.hide_2_button,.hide_3_button,.hide_4_button{
    padding: 11px 20px;
    background-color: #daa14c;
    width: 100%;
    font-size: 12px;
}
/*hover css*/
.hide_1,.hide_2,.hide_3,.hide_4{
    position: absolute;
    top: -1200%;
    /*padding: 31% 20%;*/
    padding: 10% 20%;
    opacity: 1 !important;
}
.hide_1_button,.hide_2_button,.hide_3_button,.hide_4_button{
   opacity: 0;
  transform: translateY(-100px);
  transition: transform 0.6s ease, opacity 0.6s ease;
  position: relative;
   
}
.hide_1:hover,.hide_2:hover,.hide_3:hover,.hide_4:hover {
  opacity: 1 !important;
  background-color: #30373e;
  transform: translateY(-45px) !important;
  transition: transform 0.6s !important;
}
.hide_1:hover + .hide_1_button ,.hide_2:hover + .hide_2_button ,.hide_3:hover + .hide_3_button ,.hide_4:hover + .hide_4_button {
  opacity: 1;
  transform: translateY(-45px);
}


.hide_1:hover .hide_p_1,.hide_2:hover .hide_p_2,.hide_3:hover .hide_p_3,.hide_4:hover .hide_p_4{
  padding-right: 25%;
  text-align:left;
}


.link_button{
        margin: 10% 0%;
}
.link_button a {
    background-color:#d4943a;
    color:#ffffff;
    border-radius:10px;
    padding:15px 30px;
}

.collection-overlay h3{
        background-color: #05050552;
    padding: 2%;
}

/* ========================================
   HOW IT WORKS - MOBILE FIX
   Must be after .hide_ base styles to override them
   ======================================== */
@media (max-width: 768px) {
    .hide_1, .hide_2, .hide_3, .hide_4 {
        position: relative !important;
        top: auto !important;
        padding: 15px 0 !important;
        transform: none !important;
        background-color: transparent !important;
    }

    .hide_p_1, .hide_p_2, .hide_p_3, .hide_p_4 {
        display: block !important;
        padding-right: 0 !important;
        text-align: left !important;
        font-size: 13px;
        line-height: 1.6;
    }

    .hide_1_button, .hide_2_button, .hide_3_button, .hide_4_button {
        opacity: 1 !important;
        transform: none !important;
    }

    .hide_1:hover, .hide_2:hover, .hide_3:hover, .hide_4:hover {
        transform: none !important;
    }

    .hide_1:hover + .hide_1_button,
    .hide_2:hover + .hide_2_button,
    .hide_3:hover + .hide_3_button,
    .hide_4:hover + .hide_4_button {
        transform: none !important;
    }
}