* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f39c12;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #f39c12;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-cta {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="%23f39c12" stop-opacity="0.1"/><stop offset="100%" stop-color="%23f39c12" stop-opacity="0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23a)"/></svg>') center/cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text .highlight {
    color: #f39c12;
}

.hero-text p {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #f39c12;
    display: block;
}

.stat-label {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.award-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
    z-index: 3;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.section-header {
    color: #f39c12;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.highlight-text {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    opacity: 0.6;
    margin-top: 3rem;
}

.client-logo {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.client-logo i {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 0.25rem;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.client-logo:hover i {
    color: #e67e22;
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.services .section-header {
    color: #f39c12;
}

.services .section-title {
    color: white;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro p {
    color: #bdc3c7;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #f39c12;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-icon img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #bdc3c7;
    line-height: 1.6;
}

/* Work Section */
.work {
    padding: 100px 0;
    background: #f8f9fa;
}

.work-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.work-intro p {
    color: #555;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.work-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.work-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.work-icon {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.work-card:hover .work-icon {
    transform: scale(1.1);
    opacity: 1;
}

/* Different gradients for each card */
.work-card:nth-child(1) .work-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.work-card:nth-child(2) .work-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.work-card:nth-child(3) .work-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.work-content {
    padding: 2rem;
}

.work-client {
    color: #f39c12;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0.5rem 0 1rem;
}

.work-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.work-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.work-link:hover {
    gap: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #bdc3c7;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #2c3e50;
}

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #f39c12;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f39c12;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #7f8c8d;
}

/* Enhanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Animation classes */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(80px);
    animation: slideInUp 0.8s ease forwards;
}

.animate-slide-down {
    opacity: 0;
    transform: translateY(-50px);
    animation: slideInDown 0.8s ease forwards;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease forwards;
}

.animate-rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    animation: rotateIn 0.8s ease forwards;
}

/* Staggered animation delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Initial states for elements that will be animated */
.section-header,
.section-title,
.about-text,
.service-card,
.work-card,
.client-logo {
    opacity: 0;
}

/* Hero animations */
.hero-text {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-image {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.5s;
}

.fade-in-up {
    animation: slideInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        max-width: 60px;
    }

    .nav-container .cta-button {
        display: none;
    }

    .mobile-cta {
        display: block !important;
        margin-top: 1rem;
    }

    .mobile-cta .cta-button {
        display: inline-block !important;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #2c3e50;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-text {
        padding-bottom: 2rem;
    }

    .hero-image {
        height: 400px;
        order: -1;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image img {
        transform: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .work-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }

    .logo img {
        max-width: 50px;
        margin-right: 8px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text {
        padding-bottom: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-container {
        padding: 1rem 20px;
        max-width: none;
    }

    .service-card,
    .work-card {
        margin: 0 10px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 150px 0 100px;
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-stat i {
    font-size: 2rem;
    color: #f39c12;
}

.contact-stat span {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: block;
    width: 100%;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: none;
}

/* Contact info styles - commented out since left panel was removed
.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-details {
    margin: 2rem 0;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    color: #666;
    margin: 0;
}

.contact-text a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-hours {
    font-size: 0.9rem;
    color: #999 !important;
}

.contact-services {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-services h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-services ul {
    list-style: none;
    padding: 0;
}

.contact-services li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.contact-services li i {
    color: #27ae60;
    font-size: 0.9rem;
}
*/

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form-intro h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-form-intro h2 i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #e8f5e8;
    color: #27ae60;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.privacy-note i {
    color: #27ae60;
}

.form-error-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fee;
    color: #e74c3c;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #e74c3c;
}

.contact-form {
    margin-top: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.required {
    color: #e74c3c;
}

.optional {
    color: #999;
    font-weight: normal;
}

.form-input {
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.form-input.error {
    border-color: #e74c3c;
    background: #fef5f5;
}

.form-input.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-text {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    min-width: 200px;
}

.submit-btn i {
    margin-right: 0.5rem;
}

.contact-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.contact-success h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-success-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.contact-success-details h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-next-steps {
    margin-top: 2rem;
}

.contact-next-steps h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.next-step-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.next-step-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border: 2px solid #f39c12;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    min-width: 150px;
}

.next-step-link:hover {
    background: #f39c12;
    color: white;
    transform: translateY(-3px);
}

.next-step-link i {
    font-size: 1.5rem;
    color: #f39c12;
}

.next-step-link:hover i {
    color: white;
}

.contact-error {
    text-align: center;
    padding: 2rem;
}

.error-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.contact-error h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f39c12;
    color: white;
}

.faq-question:hover i {
    color: white;
}

.faq-question i {
    color: #f39c12;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1.5rem 0;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Animation classes */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-detail,
.faq-item,
.form-field {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-stats {
        gap: 2rem;
    }
    
    .contact-content {
        padding: 0 1rem;
        width: 100%;
    }
    
    .contact-form-container {
        padding: 2rem;
        width: 100%;
        max-width: none;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .next-step-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Legal Pages Styles */
.legal-page-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: none;
}

.legal-content {
    width: 100%;
    max-width: none;
}

.legal-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f39c12;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-content h2:first-of-type {
    margin-top: 1.5rem;
}

.legal-content h2 i {
    color: #f39c12;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
}

.legal-content li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.legal-content li::before {
    content: '▸';
    color: #f39c12;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.legal-content a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #e67e22;
    text-decoration: underline;
}

.contact-info-box {
    background: #f8f9fa;
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.contact-info-box p {
    margin: 0.5rem 0;
    font-size: 1.05rem;
}

.contact-info-box strong {
    color: #2c3e50;
}

/* Responsive legal content */
@media (max-width: 768px) {
    .legal-page-container {
        padding: 2rem;
        border-radius: 0;
        margin: 0 -1rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .legal-content h2 i {
        font-size: 1.3rem;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 1rem;
    }
    
    .contact-info-box {
        margin: 1.5rem -1rem;
        border-radius: 0;
    }
}