* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-bg: #1a0f0a;
    --text-white: #ffffff;
    --text-cream: #f5f5f5;
    --accent-peach: #e8b4a0;
    --dark-overlay: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

/* Fade-in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-peach);
}

.dropdown-arrow {
    font-size: 0.7rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.25rem;
    color: var(--text-white);
    text-transform: uppercase;
}

.cart sup {
    font-size: 0.7rem;
    margin-left: 0.2rem;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(107, 78, 61, 0.85) 0%, rgba(61, 40, 23, 0.85) 50%, rgba(42, 24, 16, 0.9) 100%),
                url('../images/hero-bg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    animation: fadeInUp 1s ease-out;
    letter-spacing: 0.02em;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-cream);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1.4s ease-out;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-block;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-peach) 0%, #d4a088 100%);
    color: var(--primary-bg);
    box-shadow: 0 4px 15px rgba(232, 180, 160, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(232, 180, 160, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-peach);
    color: var(--accent-peach);
}

.btn-secondary:hover {
    background: var(--accent-peach);
    color: var(--primary-bg);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(232, 180, 160, 0.4);
}

.color-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    width: 350px;
    position: relative;
    animation: fadeInRight 1.2s ease-out;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.color-circle {
    width: 200px;
    height: 200px;
    background: var(--accent-peach);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.paint-roller {
    width: 120px;
    height: auto;
    transform: rotate(-45deg);
    animation: rollPaint 3s ease-in-out infinite;
}

@keyframes rollPaint {
    0%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    50% {
        transform: rotate(-45deg) translateY(-10px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.color-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.color-name {
    font-size: 1.3rem;
    font-weight: 500;
}

.color-code {
    font-size: 1.1rem;
    color: var(--text-cream);
}

.card-navigation {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--text-white);
    color: var(--primary-bg);
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .navbar {
        padding: 0 2rem;
    }
    
    .hero-content {
        padding: 0 2rem;
    }
}

@media (max-width: 968px) {
    .nav-left,
    .nav-right {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .logo {
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .color-card {
        width: 100%;
        max-width: 350px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

.value-section {
    background: #ffffff;
    padding: 6rem 3rem;
    text-align: center;
}

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

.value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.value-card {
    position: relative;
    padding: 3rem 2rem;
    background: #f8f8f8;
    border-radius: 15px;
    transition: all 0.4s ease;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.value-card:nth-child(1) {
    animation-delay: 0.1s;
}

.value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3) {
    animation-delay: 0.3s;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.value-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(232, 180, 160, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-number {
    color: var(--accent-peach);
    transform: scale(1.1);
}

.value-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-card-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.value-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-peach);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.value-card:hover .value-decoration {
    opacity: 0.2;
    transform: scale(1.3);
}

.value-description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-dark {
    background: #1a1a1a;
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.btn-dark:hover {
    background: transparent;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .value-section {
        padding: 4rem 2rem;
    }
    
    .value-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
    
    .value-card {
        padding: 2.5rem 1.5rem;
    }
    
    .value-number {
        font-size: 4rem;
    }
    
    .value-card-title {
        font-size: 1.6rem;
    }
    
    .value-description {
        font-size: 1rem;
    }
}

.about-section {
    background: #f8f5f2;
    padding: 6rem 3rem;
    position: relative;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-label {
    display: inline-block;
    color: var(--accent-peach);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-bg);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.about-intro {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    animation: fadeInLeft 0.8s ease-out backwards;
    transition: all 0.3s ease;
}

.about-feature:nth-child(1) {
    animation-delay: 0.2s;
}

.about-feature:nth-child(2) {
    animation-delay: 0.4s;
}

.about-feature:nth-child(3) {
    animation-delay: 0.6s;
}

.about-feature:hover {
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.about-feature:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-bg);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(232, 180, 160, 0.3);
    border-bottom: 1px solid rgba(232, 180, 160, 0.3);
}

.stat-item {
    text-align: center;
    animation: scaleIn 0.6s ease-out backwards;
    transition: transform 0.3s ease;
}

.stat-item:nth-child(1) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.7s;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-peach);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover h3 {
    transform: scale(1.2);
    text-shadow: 0 5px 15px rgba(232, 180, 160, 0.3);
}

.stat-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.image-wrapper img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 180, 160, 0.9), rgba(107, 78, 61, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
}

.overlay-content p {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    color: white;
    font-family: 'Cormorant Garamond', serif;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--accent-peach);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-wrapper img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-features {
        gap: 1rem;
    }
}

.services-section {
    background: linear-gradient(135deg, rgba(42, 24, 16, 0.95) 0%, rgba(61, 40, 23, 0.95) 50%, rgba(107, 78, 61, 0.95) 100%),
                url('../images/services-bg.jpg') center/cover no-repeat fixed;
    padding: 6rem 3rem;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(232, 180, 160, 0.02) 10px,
        rgba(232, 180, 160, 0.02) 20px
    );
    pointer-events: none;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.services-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative;
    display: inline-block;
}

.services-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-peach), transparent);
    border-radius: 2px;
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-cream);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.service-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid rgba(232, 180, 160, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
}

.service-box:nth-child(1) {
    animation-delay: 0.2s;
}

.service-box:nth-child(2) {
    animation-delay: 0.4s;
}

.service-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-peach), transparent, var(--accent-peach));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-peach);
}

.service-box:hover::before {
    opacity: 0.4;
}

.service-icon-box {
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
}

.service-box:hover .service-icon-box {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 10px 20px rgba(232, 180, 160, 0.4));
}

.service-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-cream);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
    display: inline-block;
    text-align: left;
}

.service-list li {
    padding: 0.6rem 0;
    color: var(--text-cream);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-peach);
    font-weight: bold;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--accent-peach) 0%, #d4a088 100%);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(232, 180, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-learn-more:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4a088 0%, var(--accent-peach) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-learn-more:hover:before {
    left: 0;
}

.btn-learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 180, 160, 0.5);
}

.btn-learn-more svg {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover svg {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.services-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-cream);
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-section {
        padding: 4rem 2rem;
    }
    
    .service-box {
        padding: 2rem;
    }
}

.services-page {
    background: linear-gradient(135deg, rgba(107, 78, 61, 0.92) 0%, rgba(61, 40, 23, 0.92) 50%, rgba(42, 24, 16, 0.95) 100%),
                url('../images/services-page-bg.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

.services-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(232, 180, 160, 0.015) 15px,
        rgba(232, 180, 160, 0.015) 30px
    );
    pointer-events: none;
}

.page-header {
    text-align: center;
    padding: 5rem 2rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    position: relative;
    display: inline-block;
    letter-spacing: 0.02em;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-peach), transparent);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-cream);
    margin-top: 1rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 3.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(232, 180, 160, 0.25);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-peach), transparent, var(--accent-peach));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-peach);
}

.service-card:hover::before {
    opacity: 0.4;
}

.service-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

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

.service-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: 0.01em;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-cream);
    margin-bottom: 2.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: inline-block;
    text-align: left;
    max-width: 100%;
}

.service-features li {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-cream);
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: var(--text-white);
    padding-left: 2.3rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-peach);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.why-choose-us {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-choose-us h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3.5rem;
    color: var(--text-white);
    letter-spacing: 0.01em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 180, 160, 0.15);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-peach);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-peach);
}

.feature-item p {
    color: var(--text-cream);
    line-height: 1.6;
}

.cta-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 4.5rem 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    border: 2px solid rgba(232, 180, 160, 0.3);
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: 0.01em;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-cream);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-section {
    background: #ffffff;
    padding: 6rem 3rem;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.faq-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.faq-link {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: var(--accent-peach);
    border-color: var(--accent-peach);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-peach);
}

.faq-icon {
    flex-shrink: 0;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 968px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-header h2 {
        font-size: 2.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 2rem;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, #2a1810 0%, #3d2817 50%, #6b4e3d 100%);
    padding: 6rem 3rem;
    position: relative;
}

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

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-label {
    display: inline-block;
    color: var(--accent-peach);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.contact-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-cream);
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.color-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    width: 300px;
    animation: fadeInRight 1s ease-out;
    transition: all 0.3s ease;
}

.color-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 180, 160, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-peach);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-icon {
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-cream);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--accent-peach);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--text-white);
}

.info-card .nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-peach);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-peach);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.info-hours {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(232, 180, 160, 0.25);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(232, 180, 160, 0.3);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-peach);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(232, 180, 160, 0.1);
}

.form-group select {
    cursor: pointer;
}

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

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

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 180, 160, 0.4);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
}

.footer {
    background: linear-gradient(135deg, #1a0f0a 0%, #2a1810 100%);
    padding: 4rem 0 0;
    margin-top: 0;
    border-top: 1px solid rgba(232, 180, 160, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: 0.01em;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    color: var(--text-white);
    text-transform: uppercase;
}

.footer-description {
    color: var(--text-cream);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 180, 160, 0.2);
}

.social-icon:hover {
    background: var(--accent-peach);
    color: var(--primary-bg);
    transform: translateY(-5px);
    border-color: var(--accent-peach);
    box-shadow: 0 5px 15px rgba(232, 180, 160, 0.4);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: var(--text-cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-peach);
    padding-left: 0.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item svg {
    color: var(--accent-peach);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item p {
    color: var(--text-cream);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.contact-item div p {
    margin-bottom: 0.3rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: var(--text-cream);
    font-size: 0.9rem;
    margin: 0;
}

.footer-uen {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 2rem 2rem;
    }
    
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 0 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
