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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #001521;
    color: #fff;
    overflow-x: hidden;
}

/* Site Header */
.site-header {
    background-color: rgba(0, 21, 33, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(235, 104, 65, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

a{
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #eb6841 0%, #d45a2f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(235, 104, 65, 0.3);
    transition: all 0.3s ease;
}


.logo-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #eb6841;
    margin: 0;
    letter-spacing: 1px;
}

.logo-solutions {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -3px;
}

.logo-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-left: 62px;
    margin-top: -2px;
}

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

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #eb6841;
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #eb6841;
}

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero {
    position: relative;
    min-height: 80vh;
    background-image: url('./images/hero-image-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 21, 33, 0.5) 0%, rgba(0, 21, 33, 0.6) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

.hero-brand {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-brand-text {
    font-size: 2rem;
    font-weight: 700;
    color: #eb6841;
    letter-spacing: 2px;
}

.hero-brand-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    letter-spacing: 1px;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 40px;
}

.hero-text h1 .word {
    color: #eb6841;
    font-weight: 700;
}

.hero-cta {
    margin-top: 20px;
}

.typing-text {
    position: relative;
    display: inline-block;
    min-width: 200px;
}

.word-display {
    color: #eb6841;
    font-weight: 700;
}

.cursor {
    color: #eb6841;
    animation: blink 1s infinite;
    margin-left: 2px;
    font-weight: 700;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-banner {
    background: rgba(235, 104, 65, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(235, 104, 65, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-banner p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    background: linear-gradient(135deg, #eb6841 0%, #d45a2f 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 104, 65, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 104, 65, 0.6);
    background: linear-gradient(135deg, #f57a4f 0%, #eb6841 100%);
}

.cta-button:active {
    transform: translateY(0);
}

/* Fade animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

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

/* About Section */
.about-section {
    background-color: #fff;
    color: #001521;
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #001521;
}

.section-title span {
    color: #eb6841;
}

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

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #001521;
}

.about-text p {
    margin-bottom: 25px;
}

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

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 21, 33, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}


/* Services Section */
.services-section {
    background-color: #fff;
    color: #001521;
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #001521;
    margin-bottom: 60px;
    opacity: 0.8;
}

.brand-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #001521;
    margin-bottom: 40px;
    opacity: 0.7;
    font-style: italic;
}

.brand-subtitle strong {
    color: #eb6841;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: #fff;
    border: 2px solid rgba(235, 104, 65, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 21, 33, 0.08);
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 21, 33, 0.15);
    border-color: #eb6841;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eb6841 0%, #d45a2f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}


.service-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001521;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #001521;
    opacity: 0.8;
    margin-bottom: 25px;
}

.read-more {
    color: #eb6841;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #d45a2f;
    gap: 15px;
}

.read-more:hover i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

/* Zigzag Section */
.zigzag-section {
    background-color: #fff;
    color: #001521;
    padding: 100px 0;
}

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

.zigzag-block:last-child {
    margin-bottom: 0;
}

.zigzag-reverse {
    direction: rtl;
}

.zigzag-reverse > * {
    direction: ltr;
}

.zigzag-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zigzag-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001521;
    margin-bottom: 30px;
}

.zigzag-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #001521;
    margin-bottom: 20px;
}

.zigzag-content p:last-child {
    margin-bottom: 0;
}

.zigzag-content strong {
    color: #eb6841;
    font-weight: 700;
}

.zigzag-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 21, 33, 0.15);
}

.zigzag-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.feature-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #001521;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list i {
    color: #eb6841;
    font-size: 1.2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Values Section */
.values-section {
    background-color: #fff;
    color: #001521;
    padding: 100px 0;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.values-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.flip-card {
    background-color: transparent;
    perspective: 1000px;
    height: 200px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 21, 33, 0.1);
}

.flip-card-front {
    background: linear-gradient(135deg, #eb6841 0%, #d45a2f 100%);
    color: #fff;
}

.flip-card-back {
    background: #fff;
    color: #001521;
    transform: rotateY(180deg);
    border: 2px solid #eb6841;
}

.flip-card-front h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.flip-card-back p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: #001521;
}

.values-images {
    position: relative;
    height: 600px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-image-1,
.stack-image-2 {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 21, 33, 0.2);
    object-fit: cover;
}

.stack-image-1 {
    top: 0;
    right: 0;
    width: 75%;
    height: auto;
    z-index: 1;
}

.stack-image-2 {
    bottom: 0;
    left: 0;
    width: 50%;
    height: auto;
    z-index: 2;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
    color: #001521;
    padding: 100px 0;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #f8f9fa;
    padding: 60px 50px;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #001521;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #eb6841;
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-size: 1.3rem;
    font-weight: 700;
    color: #eb6841;
    margin: 0;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.carousel-btn {
    background: linear-gradient(135deg, #eb6841 0%, #d45a2f 100%);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 104, 65, 0.3);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(235, 104, 65, 0.5);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn i {
    font-size: 1.2rem;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(235, 104, 65, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #eb6841;
    width: 14px;
    height: 14px;
}

.carousel-dot:hover {
    background: rgba(235, 104, 65, 0.6);
}

/* Contact Form Section */
.contact-section {
    background-color: #001521;
    color: #fff;
    padding: 100px 0;
}

.contact-section .section-title {
    color: #fff;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    max-width: 800px;
    margin: 60px auto 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(235, 104, 65, 0.2);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(235, 104, 65, 0.3);
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #eb6841;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(235, 104, 65, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
    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='%23eb6841' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select option {
    background: #001521;
    color: #fff;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    accent-color: #eb6841;
    flex-shrink: 0;
    margin-top: 3px;
}

.checkbox-label span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Page Hero (for About and other pages) */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 21, 33, 0.7) 0%, rgba(0, 21, 33, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: #eb6841;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    letter-spacing: 1px;
}

/* About Page Content */
.about-page-content {
    background-color: #fff;
    color: #001521;
    padding: 80px 0;
}

.about-page-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-page-section:last-of-type {
    margin-bottom: 0;
}

.about-page-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001521;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #eb6841;
}

.about-page-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #001521;
    margin-bottom: 20px;
}

.about-page-section p:last-child {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eb6841 0%, #d45a2f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001521;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #001521;
    opacity: 0.8;
    margin: 0;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.approach-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #001521;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.approach-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #eb6841;
    font-weight: 700;
    font-size: 1.2rem;
}

.approach-list li:last-child {
    margin-bottom: 0;
}

.policy-updated {
    font-size: 0.95rem;
    color: #001521;
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(235, 104, 65, 0.2);
}

.about-page-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001521;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-contact {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
}

.policy-contact p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #001521;
    margin-bottom: 10px;
}

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

.policy-contact strong {
    color: #eb6841;
    font-weight: 700;
}

.policy-contact a {
    color: #eb6841;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-contact a:hover {
    color: #d45a2f;
    text-decoration: underline;
}

.about-page-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #001521 0%, rgba(0, 21, 33, 0.95) 100%);
    border-radius: 20px;
    margin-top: 60px;
}

.about-page-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.about-page-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Contact Page Content */
.contact-page-content {
    background-color: #fff;
    color: #001521;
    padding: 80px 0;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001521;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #001521;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #eb6841 0%, #d45a2f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.contact-detail-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #001521;
    margin-bottom: 8px;
}

.contact-detail-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #001521;
    opacity: 0.8;
    margin: 0;
}

.contact-detail-content a {
    color: #eb6841;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-content a:hover {
    color: #d45a2f;
}

.contact-form-wrapper {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 21, 33, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #001521;
    margin-bottom: 30px;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
}

.contact-page-form .form-group {
    margin-bottom: 25px;
}

.contact-page-form label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #001521;
    margin-bottom: 10px;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    border: 2px solid rgba(235, 104, 65, 0.2);
    border-radius: 10px;
    color: #001521;
    transition: all 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: #eb6841;
    box-shadow: 0 0 0 3px rgba(235, 104, 65, 0.1);
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
    color: rgba(0, 21, 33, 0.5);
}

.contact-page-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal;
}

.contact-page-form .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    accent-color: #eb6841;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-page-form .checkbox-label span {
    color: #001521;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #001521;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(235, 104, 65, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #eb6841;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #eb6841;
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.footer-contact i {
    color: #eb6841;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-company p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-company p:last-child {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.footer-company strong {
    color: #eb6841;
}

.footer-bottom {
    border-top: 1px solid rgba(235, 104, 65, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #eb6841;
    margin: 0 0 5px 0;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .section-title {
        font-size: 2.5rem;
    }

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

    .zigzag-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .zigzag-reverse {
        direction: ltr;
    }

    .zigzag-content h2 {
        font-size: 2rem;
    }

    .values-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .values-images {
        height: 500px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-banner {
        padding: 30px;
    }
    
    .hero-banner h2 {
        font-size: 1.5rem;
    }
    
    .hero-banner p {
        font-size: 1rem;
    }

    .container {
        padding: 0 20px;
    }

    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .about-text {
        font-size: 1rem;
    }

    .services-section {
        padding: 60px 0;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .zigzag-section {
        padding: 60px 0;
    }

    .zigzag-block {
        margin-bottom: 50px;
    }

    .zigzag-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .zigzag-content p {
        font-size: 1rem;
    }

    .feature-list li {
        font-size: 1rem;
    }

    .values-section {
        padding: 60px 0;
    }

    .values-content {
        gap: 40px;
    }

    .flip-card {
        height: 180px;
    }

    .flip-card-front h3 {
        font-size: 1.5rem;
    }

    .flip-card-back p {
        font-size: 1rem;
    }

    .values-images {
        height: 400px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .carousel-container {
        padding: 40px 30px;
        min-height: 250px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-text::before {
        font-size: 3rem;
        top: -15px;
        left: -20px;
    }

    .testimonial-author {
        font-size: 1.1rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-page-content {
        padding: 60px 0;
    }

    .about-page-section {
        margin-bottom: 50px;
    }

    .about-page-section h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-page-cta {
        padding: 40px 20px;
    }

    .about-page-cta h2 {
        font-size: 2rem;
    }

    .contact-page-content {
        padding: 60px 0;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

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

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .site-header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i {
        font-size: 1.2rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-solutions {
        font-size: 0.75rem;
    }

    .logo-tagline {
        font-size: 0.7rem;
        margin-left: 52px;
    }

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav a {
        font-size: 0.9rem;
    }
}

