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

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

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

/* Navigation */
nav {
    background: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 0;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    z-index: 2;
}

.hero-text .tagline {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #666;
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

.cta-button {
    display: inline-block;
    background: #a0742e;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(160, 116, 46, 0.3);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}


/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-content .quote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
    color: #666;
    border-left: 4px solid #a0742e;
    padding-left: 20px;
}

.about-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Expertise Section */
.expertise-section {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

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

.expertise-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #a0742e 0%, #c89a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.expertise-card .contact-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #a0742e;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s;
    margin-top: auto;
    align-self: center;
}

.expertise-card .contact-btn:hover {
    transform: translateY(-2px);
}

/* Industry Section */
.industry-section {
    padding: 100px 0;
    background: white;
}

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

.industry-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.industry-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.industry-stats {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
}

.stat-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

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

.stat-item h3 {
    font-size: 32px;
    color: #a0742e;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-size: 14px;
}

/* Media Section */
.media-section {
    background: white;
    padding: 60px 0;
}

.media-section h3 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 400;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.media-logo {
    height: 60px;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    filter: grayscale(100%);
}

.media-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: grayscale(0%);
}

/* Content Section */
.content-section {
    padding: 100px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.content-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.content-card-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.content-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.content-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    min-height: 64px;
    display: flex;
    align-items: flex-start;
    line-height: 1.3;
}

.content-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    min-height: 78px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.content-link {
    color: #a0742e;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-card-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-main-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 60px 80px 60px 320px;
    position: relative;
    z-index: 2;
    min-height: 500px;
    width: 100%;
    max-width: 800px;
}

.contact-form-area h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2a2a2a;
    font-weight: 700;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}

.contact-info-card {
    position: absolute;
    left: 0;
    top: 50px;
    background: linear-gradient(135deg, #754554 0%, #4a2c35 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    width: 280px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail p {
    margin-bottom: 5px;
    line-height: 1.4;
}

.contact-detail p:first-child {
    margin-bottom: 8px;
}

/* FormKeep Embed Styling for White Background */
#formkeep-embed {
    margin-top: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: white;
    color: #754554;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
    border-radius: 30px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #f0f0f0;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}

/* Formkeep Embedded Form Styling - Updated for White Background */
#formkeep-embed *,
#formkeep-embed label,
#formkeep-embed .form-group label,
#formkeep-embed .form-label,
#formkeep-embed .field-label,
#formkeep-embed h3,
#formkeep-embed h4,
#formkeep-embed fieldset legend,
#formkeep-embed .control-label,
div[data-formkeep-url] label,
div[data-formkeep-url] .form-group label,
div[data-formkeep-url] .form-label,
div[data-formkeep-url] .field-label,
iframe[src*="formkeep"] label,
.formkeep-form label,
.formkeep-form .form-group label {
    color: #2a2a2a !important;
    font-weight: 500 !important;
}

#formkeep-embed input,
#formkeep-embed textarea,
#formkeep-embed select {
    background: #f8f8f8 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    color: #2a2a2a !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
}

#formkeep-embed input:focus,
#formkeep-embed textarea:focus,
#formkeep-embed select:focus {
    border-color: #754554 !important;
    box-shadow: 0 0 0 2px rgba(117, 69, 84, 0.1) !important;
    outline: none !important;
}

#formkeep-embed input::placeholder,
#formkeep-embed textarea::placeholder {
    color: #999 !important;
}

#formkeep-embed button[type="submit"] {
    background: linear-gradient(135deg, #754554 0%, #4a2c35 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: transform 0.2s ease !important;
}

#formkeep-embed button[type="submit"]:hover {
    transform: translateY(-2px) !important;
}

/* Responsive */
@media (max-width: 968px) {
    /* Contact Section Tablet */
    .contact-main-card {
        padding: 50px 60px 50px 250px;
    }
    
    .contact-info-card {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    nav ul {
        display: none;
    }

    /* Contact Section Mobile */
    .contact-card-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .contact-main-card {
        padding: 40px 30px;
        margin-top: 160px;
        border-radius: 12px 12px 0 0;
    }
    
    .contact-info-card {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        border-radius: 0 0 12px 12px;
        margin-top: -12px;
    }
    
    .contact-form-area h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .form-subtitle {
        text-align: center;
    }

    /* Mobile About Section - Logo above text */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-image img {
        width: 60% !important;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Fix Industry Experience section overflow */
    .industry-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .industry-stats {
        padding: 30px 20px;
    }
    
    .stat-item {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}