:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333333;
    --accent-color: #c8a97e;
    --text-color: #1a1a1a;
    --light-bg: #f8f8f8;
    --spacing-unit: 8px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.2%;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.overlay-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.98);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
}

.overlay-nav.active {
    transform: translateX(0);
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

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

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

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

nav ul {
    display: none;
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: flex;
    }
}

.premium-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.hero {
    background: linear-gradient(rgba(26,26,26,0.05), rgba(26,26,26,0.02)),
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 5% 8rem;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 26, 0.5);
    z-index: 1;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    cursor: pointer;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.secondary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

section {
    padding: 4rem 5%;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.service-grid, .industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card, .industry-card {
    background: white;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
    will-change: transform;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before, .industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before, .industry-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover,
.industry-card:hover {
    transform: scale(1.035);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(40,60,40,0.10), 0 1.5px 8px rgba(0,0,0,0.04);
    z-index: 2;
}

.card-image-container {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.service-card .service-icon, 
.industry-card .industry-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-card h3, .service-card p, .service-card .learn-more, .service-card .service-icon,
.industry-card h3, .industry-card p, .industry-card .learn-more, .industry-card .industry-icon {
    padding-left: 2rem;
    padding-right: 2rem;
}

.service-card h3, .industry-card h3 {
    padding-top: 1.5rem;
}
.service-card .service-icon, .industry-card .industry-icon {
    padding-top: 1.5rem;
}

.service-card p, .industry-card p {
    margin-bottom: 1rem;
}

.service-card .learn-more, .industry-card .learn-more {
    padding-bottom: 2rem;
    margin-top: auto;
}

.service-card:hover .card-image-container,
.industry-card:hover .card-image-container {
    transform: scale(1.07);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-content {
    background: linear-gradient(135deg, #f8f6f2 0%, #e9e4d5 100%);
    border-radius: 24px;
    padding: 3rem 1rem;
    box-shadow: 0 8px 40px rgba(200,169,126,0.10), 0 1.5px 8px rgba(0,0,0,0.04);
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact-form {
    background: rgba(255,255,255,0.55);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(200,169,126,0.13), 0 1.5px 8px rgba(0,0,0,0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(200,169,126,0.13);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-accent {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #fffbe6 100%);
    border-radius: 2px;
    margin: 0 auto 1.5rem auto;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    font-weight: 400;
}

.form-subtitle {
    text-align: center;
    color: #7a6c4d;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.form-row {
    display: flex;
    gap: 1.2rem;
}

.form-row.form-actions {
    justify-content: center;
    gap: 1rem;
}

.form-group {
    position: relative;
    flex: 1;
    min-width: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1rem 0.8rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: rgba(255,255,255,0.7);
    font-size: 1.08rem;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(200,169,126,0.04);
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(200,169,126,0.10);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #a89b7c;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
    background: transparent;
    transition: 0.18s cubic-bezier(.4,0,.2,1);
    padding: 0 0.2em;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.88rem;
    color: var(--accent-color);
    background: #fffbe6;
    border-radius: 4px;
    padding: 0 0.4em;
}

.form-group textarea {
    min-height: 100px;
    max-height: 220px;
}

.cta-button {
    margin-top: 0;
    width: 100%;
    max-width: 180px;
    align-self: center;
    font-size: 1.08rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(200,169,126,0.10);
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 1rem 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cta-button.secondary {
    background: #f8f6f2;
    color: #7a6c4d;
    border: 1.5px solid #e0e0e0;
}

.cta-button:hover {
    background: #bfa06b;
    color: #fff;
}

.cta-button.secondary:hover {
    background: #e9e4d5;
    color: var(--primary-color);
}

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    #contact-form {
        padding: 1.2rem 0.5rem;
    }
} 
.learn-more {
    text-decoration: none;
    color: #003004;
}