/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #b45309;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #92400e;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-dark {
    background-color: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-dark:hover {
    background-color: #404040;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-white {
    background-color: #ffffff;
    color: #b45309;
    font-weight: 700;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-white:hover {
    background-color: #f5f5f5;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fafaf9 50%, #f5f5f4 100%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-text {
    text-align: center;
}

.badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #b45309;
    background-color: #fef3c7;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #404040;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #525252;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: scale(1.05);
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge .icon {
    width: 2rem;
    height: 2rem;
    color: #d97706;
}

.badge-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.badge-subtitle {
    font-size: 0.875rem;
    color: #525252;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.chevron-down {
    width: 2rem;
    height: 2rem;
    color: #a3a3a3;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #525252;
    max-width: 48rem;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
    border: 1px solid #fef3c7;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.benefit-card:nth-child(2) {
    background: linear-gradient(135deg, #fafaf9 0%, #ffffff 100%);
    border-color: #f5f5f4;
}

.benefit-card:nth-child(3) {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-color: #e5e5e5;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon.amber {
    background-color: #fef3c7;
}

.benefit-icon.stone {
    background-color: #f5f5f4;
}

.benefit-icon.neutral {
    background-color: #e5e5e5;
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
    color: #b45309;
}

.benefit-icon.stone svg {
    color: #78716c;
}

.benefit-icon.neutral svg {
    color: #404040;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1rem;
    color: #525252;
    line-height: 1.75;
}

/* ===== COPPER WORKS SECTION ===== */
.copper-works-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fafaf9 0%, #ffffff 100%);
}

.copper-works-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.copper-works-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.copper-works-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content-text p {
    font-size: 1.125rem;
    color: #404040;
    line-height: 1.75;
}

.highlight-text {
    font-weight: 500;
    color: #92400e !important;
}

/* ===== CRAFTSMANSHIP SECTION ===== */
.craftsmanship-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.craftsmanship-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quality-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.quality-badge {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid;
}

.quality-badge.amber-bg {
    background-color: #fffbeb;
    border-color: #fef3c7;
}

.quality-badge.stone-bg {
    background-color: #fafaf9;
    border-color: #f5f5f4;
}

.quality-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quality-badge.amber-bg .quality-number {
    color: #b45309;
}

.quality-badge.stone-bg .quality-number {
    color: #78716c;
}

.quality-label {
    font-weight: 500;
    color: #404040;
}

.craftsmanship-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fafaf9 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars span {
    color: #f59e0b;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #404040;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #b45309 100%);
    color: #ffffff;
}

.cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #fffbeb;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    color: #fffbeb;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1a1a1a;
    color: #d4d4d4;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
}

.footer-heading {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 2rem;
}

.disclaimer {
    font-size: 0.875rem;
    color: #a3a3a3;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: #737373;
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .copper-works-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .craftsmanship-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.25rem;
    }
}



/* ===== HEADER ===== */
.header {
    background-color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
}

@media (min-width: 768px) {
    .header-logo {
        height: 80px;
    }
}



/* ===== FOOTER LOGO ===== */
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-logo {
        height: 80px;
    }
}



/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover img {
    transform: scale(1.05);
}

.navbar-menu {
    display: none;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #b45309;
    transition: width 0.3s ease;
}

.navbar-link:hover,
.navbar-link.active {
    color: #b45309;
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 100%;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 767px) {
    .navbar-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-menu li {
        width: 100%;
        text-align: center;
    }
    
    .navbar-link {
        display: block;
        padding: 0.75rem 0;
    }
}

/* Desktop Menu */
@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
    
    .navbar-menu {
        display: flex;
    }
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 80px;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

