/* CSS Variables for Brand Colors */
:root {
    --charcoal: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #3d3d3d;
    --gold: #c9a96e;
    --beige: #e8e0d5;
    --soft-white: #f5f3f0;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}


body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--charcoal);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--soft-white);
    border: 1px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--gold);
    color: var(--charcoal);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--charcoal);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--soft-white);
}

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

.text-gold {
    color: var(--gold);
}

.bg-dark {
    background-color: var(--dark-gray);
}
/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

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

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

.logo-text {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--soft-white);
}

.logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 2px;
    background-color: var(--soft-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}
/* ===== HERO SECTION FIX ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.9)), 
                url('../images/211324333.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), transparent);
    z-index: 1;
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--soft-white);
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--beige);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.scroll-indicator {
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: scale(1.1);
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about {
    background-color: var(--dark-gray);
}

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

.about-text h2 {
    margin-bottom: 30px;
}

/* About Section Image */
.about-image {
    position: relative;
    width: 100%;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, var(--medium-gray), var(--dark-gray));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige);
    font-style: italic;
}

/* Show placeholder if image fails to load */
.about-img:not([src]), 
.about-img[src=""] {
    display: none;
}

.about-img:not([src]) + .image-placeholder,
.about-img[src=""] + .image-placeholder {
    display: flex;
}
/* Pillar Icon Styles */
.pillar-icon {
    margin-bottom: 20px;
}

.pillar-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.pillar:hover .pillar-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--beige);
}

.pillar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    padding: 30px;
    background-color: var(--medium-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar:hover::before {
    transform: scaleX(1);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pillar h3 {
    margin-bottom: 15px;
    color: var(--soft-white);
    font-size: 1.5rem;
}

.pillar p {
    color: var(--beige);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Right Column: Image Side */
.about-image-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.9));
    padding: 30px;
    color: var(--soft-white);
}

.image-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--gold);
}

.image-overlay p {
    margin: 0;
    opacity: 0.9;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background-color: var(--medium-gray);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--gold);
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--beige);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Scope of Work Section */
.scope {
    position: relative;
    overflow: hidden;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--beige);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Scope Grid */
.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.scope-card {
    background-color: var(--charcoal);
    padding: 35px 30px;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scope-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--beige));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.scope-card:hover::before {
    transform: scaleX(1);
}

.scope-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(201, 169, 110, 0.4);
}

/* Scope Icon */
.scope-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.scope-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.scope-card h3 {
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 1.5rem;
}

.scope-card p {
    color: var(--beige);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Scope Features */
.scope-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.scope-features span {
    background: rgba(201, 169, 110, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--beige);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.scope-features i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Additional Services */
.additional-services {
    background-color: var(--charcoal);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.additional-services h3 {
    margin-bottom: 40px;
    color: var(--soft-white);
    font-size: 1.8rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.service-item h4 {
    color: var(--soft-white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-item p {
    color: var(--beige);
    font-size: 0.9rem;
    line-height: 1.5;
}



/* Simplified Residential Projects */
.residential {
    background-color: var(--dark-gray);
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--beige);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.projects-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

/* Project Card - Simplified */
.project-card {
    background-color: var(--charcoal);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

.project-card.expanded {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Project Header - Simplified */
.project-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.05), transparent);
    cursor: pointer;
    gap: 20px;
}

.project-header:hover {
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.1), transparent);
}

.project-number {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    min-width: 40px;
}

.project-header h3 {
    margin: 0;
    color: var(--soft-white);
    font-size: 1.3rem;
    flex: 1;
}

.expand-btn {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    padding: 5px;
}

.project-card.expanded .expand-btn {
    transform: rotate(180deg);
}

/* Project Content - Simplified */
.project-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.project-card.expanded .project-content {
    max-height: 800px;
    padding: 25px;
}

/* Project Image - Simple */
.project-image-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    height: 300px;
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--soft-white);
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Project Details - Simple */
.project-details {
    background: rgba(61, 61, 61, 0.3);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(232, 224, 213, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--beige);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-label i {
    color: var(--gold);
    width: 20px;
}

.detail-value {
    color: var(--soft-white);
    font-weight: 500;
}

/* Project Description */
.project-description p {
    color: var(--beige);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Expand All Button */
.expand-all-container {
    text-align: center;
    margin-top: 30px;
}

.expand-all-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.expand-all-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
}
/* Commercial Projects Section - Single Project */
.commercial {
    background-color: var(--dark-gray);
}

.commercial .project-card {
    background-color: var(--charcoal);
    border-color: rgba(201, 169, 110, 0.15);
    max-width: 1000px;
    margin: 0 auto;
}

.commercial .project-card.expanded {
    border-color: var(--gold);
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.commercial .project-header {
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.1), transparent);
}

.commercial .project-header:hover {
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.2), transparent);
}

.commercial .project-number {
    color: var(--gold);
    font-size: 1.8rem;
}

/* Project Features List */
.project-features {
    margin: 25px 0;
    padding: 20px;
    background: rgba(61, 61, 61, 0.3);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.project-features h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.project-features ul {
    list-style: none;
    padding-left: 0;
}

.project-features li {
    color: var(--beige);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.project-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.project-features li strong {
    color: var(--soft-white);
}

/* Project Quote */
.project-quote {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), transparent);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    position: relative;
}

.project-quote i.fa-quote-left {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
}

.project-quote p {
    color: var(--beige);
    font-style: italic;
    font-size: 1.1rem;
    margin-left: 40px;
    margin-bottom: 10px;
}

.quote-author {
    color: var(--gold);
    font-size: 0.9rem;
    text-align: right;
    display: block;
    margin-top: 10px;
    font-style: italic;
}

/* Station Images Section */
.station-images {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(232, 224, 213, 0.1);
}

.station-images h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.station-images p {
    color: var(--beige);
    margin-bottom: 25px;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.station {
    text-align: center;
    padding: 25px 20px;
    background: rgba(61, 61, 61, 0.3);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.station:hover {
    transform: translateY(-5px);
    background: rgba(201, 169, 110, 0.1);
}

.station-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.station-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.station h5 {
    color: var(--soft-white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.station p {
    color: var(--beige);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Additional Technical Details */
.additional-details {
    margin-top: 30px;
    padding: 25px;
    background: rgba(61, 61, 61, 0.2);
    border-radius: 8px;
}

.additional-details h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.tech-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 6px;
}

.tech-detail i {
    color: var(--gold);
    font-size: 1.5rem;
    min-width: 40px;
}

.tech-detail h5 {
    color: var(--soft-white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.tech-detail p {
    color: var(--beige);
    margin: 0;
    font-size: 0.9rem;
}

/* Drawings Section */
.drawings {
    background-color: var(--charcoal);
}

.drawings-intro {
    margin: 40px 0 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), transparent);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.intro-content h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.intro-content p {
    color: var(--beige);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.drawing-types {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.drawing-types span {
    background: rgba(201, 169, 110, 0.1);
    color: var(--beige);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawing-types i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Drawings Grid */
.drawings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.drawing-card {
    background-color: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.drawing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(201, 169, 110, 0.3);
}

.drawing-header {
    padding: 25px 25px 15px;
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.05), transparent);
}

.drawing-number {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 5px;
    display: block;
}

.drawing-header h3 {
    color: var(--soft-white);
    margin: 0;
    font-size: 1.4rem;
}

/* Drawing Preview */
.drawing-preview {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.drawing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawing-card:hover .drawing-overlay {
    opacity: 1;
}

.view-drawing-btn {
    background: rgba(201, 169, 110, 0.9);
    color: var(--charcoal);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.view-drawing-btn:hover {
    background: var(--gold);
    transform: scale(1.05);
}

.drawing-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--medium-gray), var(--dark-gray));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--beige);
}

.drawing-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Drawing Details */
.drawing-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.drawing-details h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.drawing-details > p {
    color: var(--beige);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.drawing-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(232, 224, 213, 0.1);
}

.spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--beige);
    font-size: 0.85rem;
}

.spec i {
    color: var(--gold);
    font-size: 1rem;
}

.drawing-description p {
    color: var(--beige);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.drawing-list {
    margin: 15px 0;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--beige);
    font-size: 0.9rem;
}

.list-item i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Drawing Modal */
.drawing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
}

.drawing-modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: var(--charcoal);
    max-width: 1000px;
    margin: 50px auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gold);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--soft-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(201, 169, 110, 0.8);
    transform: scale(1.1);
}

.modal-header {
    padding: 30px;
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.1), transparent);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.modal-header h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.modal-header p {
    color: var(--beige);
    margin: 0;
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid rgba(232, 224, 213, 0.1);
}

.modal-details {
    background: rgba(61, 61, 61, 0.3);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.modal-footer {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.modal-download-btn,
.modal-print-btn {
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.modal-download-btn:hover,
.modal-print-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* Team Section - Founders */
.team {
    background-color: var(--charcoal);
}

/* Founders Grid */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.founder-card {
    background-color: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 169, 110, 0.4);
}

/* Founder Image - Fixed Cropping */
.founder-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.founder-img {
    width: 100%;
    height: 120%; /* Make image taller so we can position it */
    object-fit: cover;
    object-position: center top; /* Focus on the top (faces) */
    transition: transform 0.5s ease;
}

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

/* Alternative: If you want more control, use this version */
.founder-image-alt {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.founder-image-alt .founder-img {
    width: 100%;
    height: auto;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.5s ease;
}

/* Option 3: Flex container approach */
.founder-image-flex {
    position: relative;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-start; /* Align to top */
    justify-content: center;
}

.founder-image-flex .founder-img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



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

.founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.founder-card:hover .founder-overlay {
    opacity: 1;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 110, 0.9);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Founder Info */
.founder-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.founder-info h3 {
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 1.6rem;
}

.founder-title {
    color: var(--beige);
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.founder-bio p {
    color: var(--soft-white);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Founder Expertise */
.founder-expertise {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(232, 224, 213, 0.1);
}

.founder-expertise h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tags span {
    background: rgba(201, 169, 110, 0.1);
    color: var(--beige);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

/* Founder Philosophy */
.founder-philosophy {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), transparent);
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    position: relative;
}

.philosophy-content i.fa-quote-left {
    position: absolute;
    top: 30px;
    left: 30px;
    color: var(--gold);
    font-size: 2.5rem;
    opacity: 0.3;
}

.philosophy-content h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
    padding-left: 50px;
}

.philosophy-content > p {
    color: var(--beige);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    padding-left: 50px;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-left: 50px;
}

.point {
    text-align: center;
    padding: 25px;
    background: rgba(61, 61, 61, 0.3);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.point:hover {
    transform: translateY(-5px);
}

.point i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.point h4 {
    color: var(--soft-white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.point p {
    color: var(--beige);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}


/* Clients Section */
.clients {
    background-color: var(--dark-gray);
}

/* Clients Intro */
.clients-intro {
    max-width: 800px;
    margin: 40px auto 60px;
    text-align: center;
}

.client-quote {
    font-size: 1.2rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    padding: 0 20px;
}

.client-quote:before,
.client-quote:after {
    content: '"';
    color: var(--gold);
    font-size: 2rem;
    position: absolute;
    opacity: 0.3;
}

.client-quote:before {
    top: -10px;
    left: 0;
}

.client-quote:after {
    bottom: -20px;
    right: 0;
}

.client-mission {
    color: var(--beige);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    background-color: var(--charcoal);
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(201, 169, 110, 0.3);
}

.logo-container {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 10px;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-logo:hover .logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.client-name {
    color: var(--beige);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    line-height: 1.4;
}

/* Client Statistics */
.client-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), transparent);
    border-radius: 15px;
    border-top: 4px solid var(--gold);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--beige);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(232, 224, 213, 0.1);
}

.testimonials h3 {
    color: var(--gold);
    margin-bottom: 50px;
    font-size: 1.8rem;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background-color: var(--charcoal);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    position: relative;
}

.testimonial-content i {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
}

.testimonial-content p {
    color: var(--beige);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-left: 30px;
}

.testimonial-author {
    padding-left: 30px;
    border-left: 2px solid var(--gold);
}

.testimonial-author strong {
    color: var(--soft-white);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}
/* Contact Section */
.contact {
    background-color: var(--charcoal);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

/* Contact Info Section */
.contact-details {
    background-color: var(--dark-gray);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(232, 224, 213, 0.1);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-text h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-text p {
    color: var(--beige);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-text p:last-child {
    margin-bottom: 0;
}

/* Map Container */
.map-container {
    margin-bottom: 40px;
}

.map-container h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.google-map {
    display: block;
    border: none;
}

.map-controls {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: var(--dark-gray);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.map-btn {
    flex: 1;
    padding: 12px 20px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* Social Contact */
.social-contact {
    background-color: var(--dark-gray);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.social-contact h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-5px);
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--dark-gray);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

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

.form-header h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.form-header p {
    color: var(--beige);
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    color: var(--beige);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.form-group label i {
    color: var(--gold);
    width: 20px;
}

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

input, select, textarea {
    padding: 14px 16px;
    background-color: rgba(61, 61, 61, 0.5);
    border: 1px solid rgba(232, 224, 213, 0.1);
    border-radius: 6px;
    color: var(--soft-white);
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.2);
}

input::placeholder, textarea::placeholder {
    color: rgba(232, 224, 213, 0.5);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a96e' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload */
.file-upload-label {
    cursor: pointer;
    padding: 20px;
    background: rgba(61, 61, 61, 0.3);
    border: 2px dashed rgba(201, 169, 110, 0.3);
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 10px;
}

.file-upload-label:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.file-upload-label input[type="file"] {
    display: none;
}

.file-upload-text {
    font-size: 0.85rem;
    color: rgba(232, 224, 213, 0.7);
    font-weight: normal;
    margin-top: 5px;
}

/* Form Footer */
.form-footer {
    margin-top: 20px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d4b483;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 110, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    color: rgba(232, 224, 213, 0.6);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.form-message.loading {
    display: block;
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.3);
}

/* Quick Contact Banner */
.quick-contact {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), transparent);
    border-radius: 15px;
    border-left: 5px solid var(--gold);
}

.quick-contact-content {
    text-align: center;
}

.quick-contact-content h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.quick-contact-content p {
    color: var(--beige);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.phone-btn {
    background: var(--gold);
    color: var(--charcoal);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.email-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.phone-btn:hover {
    background: #d4b483;
}

.whatsapp-btn:hover {
    background: #1da851;
}

.email-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
}
/* Footer Section - Clean & Non-Repetitive */
.footer {
    background-color: var(--charcoal);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(232, 224, 213, 0.1);
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--soft-white);
}

.footer-logo-text span {
    color: var(--gold);
}

.footer-tagline {
    color: var(--beige);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.footer-social h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

/* Portfolio Links */
.footer-portfolio {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-portfolio h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.portfolio-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(61, 61, 61, 0.3);
    border-radius: 8px;
    color: var(--beige);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 224, 213, 0.1);
}

.portfolio-link:hover {
    background: rgba(201, 169, 110, 0.1);
    transform: translateX(5px);
    border-color: rgba(201, 169, 110, 0.3);
}

.portfolio-link i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
}

.portfolio-link span {
    font-size: 0.95rem;
}

/* Action Button */
.footer-action {
    margin-top: 10px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--gold), #d4b483);
    color: var(--charcoal);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 169, 110, 0.3);
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-newsletter h4 {
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-newsletter > p {
    color: var(--beige);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    display: flex;
    background: rgba(61, 61, 61, 0.5);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(232, 224, 213, 0.1);
}

.input-group input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--soft-white);
    font-size: 0.95rem;
}

.input-group input::placeholder {
    color: rgba(232, 224, 213, 0.5);
}

.input-group input:focus {
    outline: none;
}

.newsletter-btn {
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #d4b483;
}

.privacy-note {
    color: rgba(232, 224, 213, 0.5);
    font-size: 0.8rem;
    text-align: center;
    margin: 5px 0 0 0;
}

/* Awards */
.footer-awards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.award {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--beige);
    font-size: 0.9rem;
}

.award i {
    color: var(--gold);
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
}

.copyright p {
    color: var(--beige);
    font-size: 0.9rem;
    margin: 0;
}

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

.back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    color: var(--beige);
}

.separator {
    color: rgba(232, 224, 213, 0.3);
}

.footer-links a {
    color: var(--beige);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}