:root {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #d98c68; /* Approximate from image */
    --card-bg: #ffffff;
    --card-text: #333333;
    --font-heading: 'Oswald', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --container-width: 1200px;
    --spacing-unit: 1rem;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #b91c1c; /* Updated red from image */
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #dc2626;
}

.btn-dark {
    background-color: #000;
    color: white;
    border: 1px solid #333;
    padding: 15px 30px;
    border-radius: 30px;
}

.btn-dark:hover {
    background-color: #222;
}

.btn-outline {
    background-color: transparent;
    color: var(--card-text);
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-outline:hover {
    border-color: #000;
    background-color: #f9f9f9;
}

/* Navbar */
.navbar {
    background-color: #fff;
    color: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* For absolute positioning of mobile menu */
}

.logo img {
    height: 60px; /* Adjust based on logo aspect ratio */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
    background-color: #fff; /* Top part is white based on image */
    color: #000;
    padding: 80px 0;
    position: relative;
}

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

.hero-content .subtitle {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero-content .subtitle .line {
    height: 2px;
    width: 40px;
    background-color: #6a5acd; /* Purple line from image */
    margin-left: 10px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: none; /* The h1 in image is sentence case */
    font-family: var(--font-body); /* Looks like sans-serif in image, not Oswald */
    letter-spacing: -0.5px;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Hero Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-content > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content .subtitle {
    animation-delay: 0.2s;
}

.hero-content h1 {
    animation-delay: 0.4s;
}

.hero-content .btn {
    animation-delay: 0.6s;
}

/* Team Image Section */
.team-image-section {
    background-color: var(--bg-color);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

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

.team-image-wrapper {
    position: relative;
}

.team-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    /* Removed rotation as requested */
}

.team-content {
    color: #fff;
}

.team-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #fff;
    text-transform: none;
    font-family: var(--font-heading);
}

.team-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

/* Responsive for Team Section */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Services Section */
.services {
    padding: 50px 0 100px;
    text-align: center;
}

.outline-title {
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.section-desc {
    color: var(--accent-color);
    font-size: 2rem;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
    margin-top: 80px;
}

.service-card {
    background-color: var(--card-bg);
    color: var(--card-text);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background-color: #fffef2; /* Very light gold/yellow */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card .icon {
    margin-bottom: 20px;
    color: #000;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.learn-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    display: inline-flex;
    align-items: center;
}

.learn-more:hover {
    text-decoration: underline;
}

.read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.read-more:hover {
    text-decoration: underline;
}

/* Products Section */
.products {
    padding: 100px 0;
    text-align: center;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 80px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
    background-color: #fff; /* White cards for products */
    color: #000;
    padding: 0; /* Image takes full height usually, but here it's a card layout */
    border-radius: 12px;
    overflow: hidden;
}

/* Adjust product item to match the card style in image */
.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    align-items: stretch;
}

.product-text {
    padding: 40px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.product-desc-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.product-desc-wrapper > *:last-child {
    margin-bottom: 0;
}

.product-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: var(--font-body);
}

.product-text p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-image {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.placeholder-img {
    width: 100%;
    height: 400px;
    background-color: #ddd;
}

/* Footer */
.footer {
    padding: 50px 0 100px;
    text-align: center;
    background-color: var(--bg-color);
}

.footer h2 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-rounded-lg {
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1rem;
}

.copyright {
    margin-top: 120px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 1000; /* Behind hamburger */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 40px;
        position: static;
        transform: none;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }
    
    .hero-content .subtitle {
        justify-content: center;
    }

    .product-item {
        grid-template-columns: 1fr;
    }
    
    .product-item .product-text {
        order: 2;
    }
}

.product-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Read More Button */
.read-more-btn {
    display: inline;
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    margin-top: 10px;
    text-decoration: underline;
}

.mobile-hidden-text {
    display: none;
}

.mobile-hidden-text.expanded {
    display: block;
}

@media (max-width: 768px) {
    .outline-title {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }


    .product-buttons {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 30px;
    }
    
    .product-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1002;
}

.nav-item-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333 !important; /* Force dark text in dropdown */
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--accent-color) !important;
}

/* Mobile Dropdown adjustments */
@media (max-width: 768px) {
    .nav-item-dropdown:hover .dropdown-menu {
        display: none; /* Disable hover on mobile */
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
        position: static;
        box-shadow: none;
        background-color: transparent;
        padding-left: 20px;
    }
    
    .dropdown-menu a {
        color: #fff !important; /* Assuming mobile menu has dark bg */
        padding: 8px 0;
    }
}
