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

body {
    font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: #1a1a1a;
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
}

/* 模擬豪華室內設計背景 */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(194, 165, 115, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 115, 85, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(26, 26, 26, 0.4) 50%,
            rgba(26, 26, 26, 0.7) 100%);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 50px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(26, 26, 26, 0.98);
    padding: 15px 50px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-header {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.logo-icon {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #c2a573 0%, #f4e4c1 50%, #c2a573 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}

.logo-text {
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 45px;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
}

.nav-menu a:hover {
    color: #c2a573;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #c2a573, #f4e4c1);
    transition: width 0.3s ease;
}

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

.dropdown {
    position: relative;
}

.dropdown::after {
    content: '▼';
    font-size: 9px;
    margin-left: 6px;
    opacity: 0.6;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 50px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #c2a573 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    animation: fadeInUp 1.4s ease-out;
}

.hero-description {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 50px;
    animation: fadeInUp 1.6s ease-out;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.8s ease-out;
}

.btn {
    padding: 15px 45px;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 400;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #c2a573 0%, #8b7355 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(194, 165, 115, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(194, 165, 115, 0.4);
    background: linear-gradient(135deg, #d4b886 0%, #9d8266 100%);
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(194, 165, 115, 0.5);
}

.btn-secondary:hover {
    background: rgba(194, 165, 115, 0.1);
    border-color: #c2a573;
    transform: translateY(-3px);
}

/* LINE Customer Service Button */
.line-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: #00B900;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 185, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.line-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 185, 0, 0.4);
}

.line-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #00B900;
    font-size: 16px;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Footer Tagline */
.footer-tagline {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* Decorative Elements */
.decorative-line {
    position: absolute;
    top: 50%;
    left: 50px;
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, #c2a573, transparent);
    transform: translateY(-50%);
    opacity: 0.3;
}

.decorative-line.right {
    left: auto;
    right: 50px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, #c2a573, transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Portfolio Section */
.portfolio-section {
    background: #0f0f0f;
    padding: 20px 50px;
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(194, 165, 115, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 4px;
    color: #c2a573;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.project-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.project-block:nth-child(2) {
    animation-delay: 0.2s;
}

.project-block:nth-child(3) {
    animation-delay: 0.4s;
}

.project-block:nth-child(4) {
    animation-delay: 0.6s;
}

.project-block.reverse {
    direction: rtl;
}

.project-block.reverse>* {
    direction: ltr;
}

/* Project Slider */
.project-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(194, 165, 115, 0.1) 50%,
            rgba(0, 0, 0, 0.3) 100%);
}

.slide-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(194, 165, 115, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-slider:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: #c2a573;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

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

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

.slider-dot.active {
    background: #c2a573;
    width: 30px;
    border-radius: 5px;
}

/* Project Info */
.project-info {
    padding: 20px;
}

.project-category {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #c2a573;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 6px 16px;
    border: 1px solid rgba(194, 165, 115, 0.3);
    border-radius: 20px;
}

.project-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.project-description {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.project-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(194, 165, 115, 0.2);
    border-bottom: 1px solid rgba(194, 165, 115, 0.2);
}

.spec-item {
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.spec-item strong {
    color: #c2a573;
    font-weight: 400;
}

.project-link {
    display: inline-block;
    color: #c2a573;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.project-link:hover {
    color: #d4b886;
    transform: translateX(5px);
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 20px 25px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 14px 30px;
    }

    .decorative-line {
        display: none;
    }

    /* Portfolio Responsive */
    .portfolio-section {
        padding: 80px 25px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .project-block {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .project-block.reverse {
        direction: ltr;
    }

    .project-slider {
        height: 350px;
    }

    .project-info {
        padding: 10px;
    }

    .project-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .project-description {
        font-size: 14px;
    }

    .project-specs {
        flex-direction: column;
        gap: 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Footer Styles */
.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 50px 30px;
    border-top: 1px solid rgba(194, 165, 115, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    grid-template-columns: 2fr 3fr;
 
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;

}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 20px
}

.footer-logo .logo-icon {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #c2a573 0%, #f4e4c1 50%, #c2a573 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.footer-logo .logo-text {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #c2a573;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #c2a573;
    padding-left: 5px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(194, 165, 115, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(194, 165, 115, 0.1);
    border-color: #c2a573;
    color: #c2a573;
    transform: translateY(-3px);
}

.footer-bottom {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(194, 165, 115, 0.1);
}

.footer-company p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #c2a573;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(194, 165, 115, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 115, 85, 0.08) 0%, transparent 50%);
}

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

.page-tag {
    font-size: 12px;
    letter-spacing: 4px;
    color: #c2a573;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-title {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
}

/* Services Section */
.services-section {
    background: #0f0f0f;
    padding: 100px 50px;
}

.services-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-description {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-top: 20px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(194, 165, 115, 0.1);
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: rgba(194, 165, 115, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    margin-bottom: 30px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(194, 165, 115, 0.1), rgba(194, 165, 115, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border: 1px solid rgba(194, 165, 115, 0.2);
}

.service-title {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-description {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 35px;
}

.service-features li {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c2a573;
    font-weight: 700;
}

.service-btn {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    border: 1px solid rgba(194, 165, 115, 0.5);
    color: #c2a573;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: rgba(194, 165, 115, 0.1);
    border-color: #c2a573;
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    background: #1a1a1a;
    padding: 100px 50px;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: #0f0f0f;
    border-radius: 8px;
    border: 1px solid rgba(194, 165, 115, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: rgba(194, 165, 115, 0.3);
    transform: translateY(-5px);
}

.step-number {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #c2a573 0%, #f4e4c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-description {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 100px 50px;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(194, 165, 115, 0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* Contact Section */
.contact-section {
    background: #0f0f0f;
    padding: 100px 50px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(194, 165, 115, 0.1);
}

.form-title,
.info-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 15px;
}

.form-description {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.required {
    color: #c2a573;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #0f0f0f;
    border: 1px solid rgba(194, 165, 115, 0.2);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c2a573;
    background: #1a1a1a;
}

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

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: #c2a573;
    text-decoration: none;
}

.btn-submit {
    margin-top: 15px;
    width: 100%;
}

/* Contact Info Card */
.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    background: rgba(194, 165, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #c2a573;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.info-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #c2a573;
}

.info-note {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 5px;
}

.social-links-card {
    background: rgba(194, 165, 115, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(194, 165, 115, 0.1);
}

.social-links-card h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-button {
    padding: 10px 20px;
    background: rgba(194, 165, 115, 0.1);
    border: 1px solid rgba(194, 165, 115, 0.2);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-button:hover {
    background: rgba(194, 165, 115, 0.2);
    border-color: #c2a573;
    color: #c2a573;
}

/* Map Section */
.map-section {
    background: #0f0f0f;
    padding: 0;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 400px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 0 50px;
}

.map-overlay {
    text-align: center;
}

.map-overlay p {
    font-size: 18px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.map-link {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(194, 165, 115, 0.5);
    color: #c2a573;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: rgba(194, 165, 115, 0.1);
    border-color: #c2a573;
}

/* FAQ Section */
.faq-section {
    background: #1a1a1a;
    padding: 100px 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #0f0f0f;
    border: 1px solid rgba(194, 165, 115, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(194, 165, 115, 0.3);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(194, 165, 115, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
}

.faq-icon {
    font-size: 24px;
    color: #c2a573;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    /* max-height: 0; */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* Responsive - Footer and New Pages */
@media (max-width: 768px) {
    .footer {
        padding: 60px 25px 20px;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .services-section,
    .process-section,
    .cta-section,
    .contact-section,
    .faq-section {
        padding: 60px 25px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 35px;
    }

    .process-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 35px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        margin: 0 25px;
    }

    .cta-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}



.logo-img {
    width: 90px;
}

.logo-footer-img {
    width: 300px;
}


/* Animated Gradient Background */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
         #1a1a2e 0%,
     
        #8b7355 25%,
        #2a2a2a 50%,
           #16213e 75%,
        #1a1a2e 100%
    );
    background-size: 150% 200%;
    animation: gradientFlow 16s ease infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}