/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --accent-color: #571010;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #f5f5f5;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-black);
    background-color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-black);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%), 
                url('images/creative-business-team-working-together-in-a-busy.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" x="50" y="50" fill="white" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--primary-white);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.highlight {
    color: var(--primary-white);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: #8b2020;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 16, 16, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary-white);
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background-color: var(--primary-white);
    margin: 10px auto;
}

/* Section Dividers */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.divider-line {
    width: 200px;
    height: 1px;
    background-color: var(--primary-black);
}

.divider-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-black);
    border-radius: 50%;
    margin: 0 20px;
}

.divider-diamond {
    width: 15px;
    height: 15px;
    background-color: var(--primary-black);
    transform: rotate(45deg);
    margin: 0 20px;
}

.divider-circle {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-black);
    border-radius: 50%;
    margin: 0 20px;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
}

.section-title.centered {
    text-align: center;
}

.title-line {
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-black);
    margin-bottom: 20px;
}

.title-accent {
    font-weight: 300;
    font-style: italic;
    color: var(--accent-color);
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-medium);
}

.intro-image {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: visible;
}

.intro-image-mobile {
    display: none;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 0;
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-black);
}

.frame-corner.tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.tr {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bl {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.frame-corner.br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.expertise-box {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.expertise-box p {
    font-size: 18px;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: var(--primary-white);
    padding: 40px;
    border-radius: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--primary-black);
    transition: width 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(87, 16, 16, 0.15);
    border-color: var(--accent-color);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-white);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: #8b2020;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-medium);
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-quote {
    background-color: var(--primary-black);
    color: var(--primary-white);
    width: 100%;
    border-radius: 5px;
    margin-top: auto;
}

.btn-quote:hover {
    background-color: var(--gray-dark);
    transform: translateY(-2px);
}

.services-cta {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
}

.services-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('images/hands-shaping-clay-on-pottery-wheel-in-sunlight.jpg') center/cover no-repeat;
    color: var(--primary-white);
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
    align-items: start;
}

.footer-col {
    display: flex;
    justify-content: flex-end;
}

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

.footer-company {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact a {
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #cccccc;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-legal h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-legal li {
    margin-bottom: 10px;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-white);
}

.footer-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-logo {
    width: 250px;
    height: auto;
    margin-top: -5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--primary-white);
    margin: 5% auto;
    padding: 50px;
    border-radius: 10px;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 35px;
    font-weight: 300;
    color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-black);
}

.modal-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 30px;
}

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

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-black);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

/* Form Submit Buttons */
.quote-form .btn-primary,
.contact-form .btn-primary {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.quote-form .btn-primary:hover,
.contact-form .btn-primary:hover {
    background-color: var(--gray-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-black);
        width: 100%;
        text-align: right;
        transition: 0.3s;
        padding: 30px 40px;
        gap: 15px;
        align-items: flex-end;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 8px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .page-header {
        padding: 50px 0;
        margin-top: 90px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-image-desktop {
        display: none !important;
    }

    .intro-image-mobile {
        display: block !important;
        height: 300px;
        margin: 30px 0;
    }

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

    .intro-content {
        order: 1;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% 20px;
        padding: 30px;
    }

    .services-cta {
        padding: 40px 20px;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-legal ul {
        flex-direction: column;
        gap: 10px;
    }

    .section-divider {
        display: none;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .service-detail-header {
        padding: 30px 20px;
        display: flex !important;
    }

    .service-detail-content {
        padding: 30px 20px;
        display: block !important;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .services-nav-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('images/silhouettes-of-row-of-chess-pawns-isolated-on-blac.jpg') center/cover no-repeat;
    color: var(--primary-white);
    padding: 80px 0;
    margin-top: 90px;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    font-weight: 300;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
    background: linear-gradient(rgba(247, 247, 247, 0.98), rgba(247, 247, 247, 0.98)), 
                url('images/umbrellas-2024-11-25-12-51-57-utc.jpg') center/cover no-repeat fixed;
}

.services-nav {
    background-color: var(--primary-white);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services-nav h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.service-select {
    width: 100%;
    max-width: 600px;
    padding: 15px 20px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 50px;
}

.service-select:hover {
    border-color: var(--accent-color);
}

.service-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(87, 16, 16, 0.1);
}

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

.services-nav-grid a {
    padding: 12px 20px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.services-nav-grid a:hover {
    background-color: var(--gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-detail-card {
    background-color: var(--primary-white);
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    scroll-margin-top: 200px;
    display: grid;
    grid-template-columns: 350px 1fr;
}

.service-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-header {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.service-detail-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-black);
}

.service-number {
    font-size: 48px;
    font-weight: 800;
    opacity: 0.3;
}

.service-detail-header h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.service-detail-content {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray-medium);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--gray-medium);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: 700;
    font-size: 16px;
}

.service-detail-content .btn-primary {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.service-detail-content .btn-primary:hover {
    background-color: var(--gray-dark);
}

/* About Page */
.about-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-medium);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-card {
    text-align: center;
    padding: 40px;
    background-color: var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-white);
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-medium);
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.understanding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.understanding-item {
    background-color: var(--primary-white);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    transition: var(--transition);
}

.understanding-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.item-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-black);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 20px;
}

.understanding-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.understanding-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-medium);
    position: relative;
    z-index: 1;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)), 
                url('images/business-woman-portrait-outdoors.jpg') center/cover no-repeat;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: height 0.3s ease;
}

.value-card:hover::before {
    height: 100%;
}

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

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.founder-image {
    position: relative;
    border-radius: 10px;
    overflow: visible;
    background: #cccccc;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 0;
}

.founder-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-black);
}

.founder-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-medium);
}

.founder-quote {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    position: relative;
}

.founder-quote::before {
    content: '"';
    font-size: 80px;
    font-weight: 700;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.2;
    line-height: 1;
}

.founder-quote blockquote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.founder-closing {
    font-size: 17px;
    font-weight: 500;
    color: var(--primary-black);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.values-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.values-intro {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-medium);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background-color: var(--primary-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(87, 16, 16, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-white);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.value-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-medium);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

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

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-white);
}

.detail-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.detail-content p {
    font-size: 15px;
    color: var(--gray-medium);
}

.detail-content a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.detail-content a:hover {
    color: var(--gray-medium);
}

.contact-hours {
    background-color: var(--primary-white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-hours h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-hours p {
    font-size: 15px;
    color: var(--gray-medium);
    margin-bottom: 5px;
}

.contact-image {
    position: relative;
    margin-top: 30px;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.contact-cta-box {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
}

.contact-cta-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-cta-box p {
    font-size: 15px;
    line-height: 1.7;
}

.contact-form-wrapper {
    background-color: var(--primary-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Why Contact Section */
.why-contact {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.why-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-black);
    opacity: 0.1;
    margin-bottom: 10px;
}

.why-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-medium);
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-medium);
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 10px;
}

/* Sitemap */
.sitemap-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.sitemap-column h3 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-black);
}

.sitemap-column ul {
    list-style: none;
}

.sitemap-column li {
    margin-bottom: 12px;
}

.sitemap-column a {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.sitemap-column a:hover {
    color: var(--primary-black);
    padding-left: 5px;
}

/* Responsive for new pages */
@media (max-width: 968px) {
    .page-header h1 {
        font-size: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .service-number {
        font-size: 36px;
    }

    .service-detail-header h2 {
        font-size: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .understanding-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-nav-grid {
        grid-template-columns: 1fr;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image {
        width: 100%;
        max-width: 100%;
        background: #cccccc !important;
    }

    .founder-image img {
        width: 100% !important;
        height: auto !important;
    }
}