* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #181818;
    background-color: #f7f6f3;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    max-width: 100vw;
}

body.loaded {
    opacity: 1;
}

/* Scroll Animations */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-element:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-element:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-element:nth-child(4) {
    transition-delay: 0.3s;
}

/* Navbar scroll effects */
.navbar.scrolled {
    background: rgba(24, 24, 24, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,122,0,0.2);
    height: 75px;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header {
    background: #181818;
    color: #ff7a00;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav {
    margin: 20px 0;
}

nav a {
    color: #ff7a00;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
    color: #181818;
    background: #ff7a00;
    border-radius: 4px;
    padding: 2px 8px;
}

main {
    padding: 0;
}

section {
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #181818 0%, #2c2c2c 100%);
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ff9533);
}

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

.footer-section h4 {
    color: #ff7a00;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.footer-logo span {
    color: #ff7a00;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,122,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a00;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #ff7a00;
    color: #fff;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff7a00;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ccc;
    font-size: 0.95rem;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: #ff7a00;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff7a00;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

.button {
    background-color: #ff7a00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.button:hover {
    background-color: #181818;
    color: #ff7a00;
    border: 1px solid #ff7a00;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: rgba(24, 24, 24, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    margin: 0;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255,122,0,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.02);
}

.navbar-logo img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 2px;
    background: rgba(255,122,0,0.1);
}

.navbar-logo img:hover {
    background: rgba(255,122,0,0.2);
    transform: rotate(5deg) scale(1.1);
}

.navbar-logo span {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ff7a00, #ffa366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255,122,0,0.3);
    position: relative;
}

.navbar-logo span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff7a00, #ffa366);
    transition: width 0.3s ease;
}

.navbar-logo:hover span::after {
    width: 100%;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-links li a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.navbar-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #ff7a00, #ffa366);
    border-radius: 25px;
    transition: width 0.3s ease;
    z-index: -1;
}

.navbar-links li a:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,122,0,0.3);
    border-color: rgba(255,122,0,0.5);
    background: rgba(255,122,0,0.1);
}

.navbar-links li a:hover::before {
    width: 100%;
}

/* Hamburger Menu */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.navbar-toggle .bar {
    width: 25px;
    height: 3px;
    background: #ff7a00;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    /* Hero Image Mobile Fix */
    .hero-image {
        height: 100vh;
        min-height: 100vh;
        background: url('../../imgs/mobile-bg.jpg') center center/cover no-repeat;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        position: relative;
    }
    
    .navbar {
        padding: 0 20px;
        height: 70px;
    }
    
    .navbar-logo span {
        font-size: 1.3rem;
    }
    
    .navbar-logo img {
        height: 35px;
        width: 35px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(24, 24, 24, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
        gap: 25px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .navbar-links.active {
        right: 0;
    }

    .navbar-links li a {
        color: #fff;
        font-size: 1.1rem;
        padding: 15px 40px;
        border-radius: 25px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
        width: 200px;
        text-align: center;
    }

    .navbar-links li a:hover {
        color: #fff;
        background: rgba(255,122,0,0.2);
        border-color: rgba(255,122,0,0.5);
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255,122,0,0.3);
    }

    .hero-branding {
        top: 25%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        display: none;
    }
    
    .hero-mobile-buttons {
        display: flex;
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
        width: 100%;
        max-width: 320px;
    }

    .btn-primary, .btn-secondary {
        padding: 16px 30px;
        font-size: 1rem;
        width: 280px;
        text-align: center;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .service-item {
        max-width: none;
    }
}

/* Hero Image Styles */
.hero-image {
    margin-top: 0;
    width: 100%;
    height: 100vh;
    background: url('../../imgs/globaexport-bg.jpg') center center no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    filter: brightness(1.2) contrast(1.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24,24,24,0.25) 0%, rgba(0,0,0,0.15) 50%, rgba(255,122,0,0.1) 100%);
    z-index: 1;
}

.hero-branding {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 30px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffa366;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    position: absolute;
    bottom: 15%;
    right: 8%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.floating-btn {
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.hero-mobile-buttons {
    display: none;
}

.btn-primary, .btn-secondary {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: linear-gradient(45deg, #ff7a00, #ff9533);
    color: #fff;
    border-color: #ff7a00;
    box-shadow: 0 8px 25px rgba(255,122,0,0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #e66900, #ff7a00);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,122,0,0.5);
    border-color: #e66900;
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.9);
    color: #181818;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.8);
}

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

/* Stats Section */
.stats-section.full-width {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #181818 0%, #2c2c2c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section.full-width::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff7a00" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff7a00" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ff7a00" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="%23ff7a00" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: #fff;
    position: relative;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255,122,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,122,0,0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255,122,0,0.2);
    border-color: rgba(255,122,0,0.4);
    box-shadow: 0 20px 40px rgba(255,122,0,0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff7a00;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255,122,0,0.5);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
}

.about-section {
    max-width: 700px;
    margin: 40px auto 60px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 32px 28px;
    text-align: center;
}

.about-section h2 {
    color: #004080;
    margin-bottom: 18px;
    font-size: 2rem;
    font-weight: 700;
}

.about-section p {
    color: #333;
    font-size: 1.15rem;
    line-height: 1.6;
}

.about-section.full-width {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    padding: 48px 0;
    text-align: center;
}

.about-section.full-width h2 {
    color: #ff7a00;
    margin-bottom: 18px;
    font-size: 2rem;
    font-weight: 700;
}

.about-section.full-width p {
    color: #181818;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 24px auto 0 auto;
    max-width: 900px;
    padding: 0 24px;
}

/* İlk paragrafın üstünde boşluk olmasın */
.about-section.full-width p:first-child {
    margin-top: 0;
}

/* Contact Section */
.contact-section.full-width {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    color: #181818;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ff7a00, #ff9533);
    border-radius: 2px;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(24,24,24,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,122,0,0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,122,0,0.15);
    border-color: rgba(255,122,0,0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7a00, #ff9533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-card h3 {
    color: #181818;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* WhatsApp Contact Card */
.whatsapp-card {
    grid-column: span 2;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
}

.whatsapp-card .info-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.whatsapp-card h3 {
    color: white;
    margin-bottom: 20px;
}

.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn .flag {
    font-size: 1.2rem;
    min-width: 20px;
}

.whatsapp-btn .office {
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.whatsapp-btn .number {
    font-size: 0.85rem;
    opacity: 0.9;
    font-family: monospace;
}

.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(24,24,24,0.1);
    border: 1px solid rgba(255,122,0,0.1);
}

.contact-form h3 {
    color: #181818;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #181818;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
    color: #181818;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff7a00;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,122,0,0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: #ff7a00;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #ff7a00;
    border-color: #ff7a00;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #ff7a00, #ff9533);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e66900, #ff7a00);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,122,0,0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

@media screen and (max-width: 1024px) {
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-card {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .whatsapp-card {
        grid-column: span 1;
    }
    
    .whatsapp-buttons {
        gap: 10px;
    }
    
    .whatsapp-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .whatsapp-btn .office {
        font-size: 0.9rem;
    }
    
    .whatsapp-btn .number {
        font-size: 0.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Container for sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hizmetler bölümü için */
.services-section.full-width {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #fff7f0 0%, #f0f8ff 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-section.full-width::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,122,0,0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.services-section h2 {
    color: #181818;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ff7a00, #ff9533);
    border-radius: 2px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(24,24,24,0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,122,0,0.1);
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255,122,0,0.2);
    border-color: rgba(255,122,0,0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff7a00, #ff9533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #ff9533, #ffb366);
}

.service-item h3 {
    color: #181818;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: #ff7a00;
}

.service-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-item:hover p {
    color: #181818;
}

.service-hover-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,122,0,0.1), rgba(255,149,51,0.1));
    transition: left 0.5s ease;
    z-index: -1;
}

.service-item:hover .service-hover-overlay {
    left: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Testimonials Section */
.testimonials-section.full-width {
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.testimonials-section h2 {
    text-align: center;
    color: #181818;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ff7a00, #ff9533);
    border-radius: 2px;
}

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

.testimonial-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(24,24,24,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,122,0,0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255,122,0,0.15);
    border-color: rgba(255,122,0,0.2);
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #ff7a00, #ff9533);
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: rgba(255,122,0,0.2);
    margin-bottom: 20px;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7a00, #ff9533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #181818;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .testimonial-item {
        padding: 30px 25px;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
}

/* Process Section */
.process-section.full-width {
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.process-section h2 {
    text-align: center;
    color: #181818;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
}

.process-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ff7a00, #ff9533);
    border-radius: 2px;
}

.process-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #ff7a00, #ff9533);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7a00, #ff9533);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255,122,0,0.3);
    z-index: 3;
}

.step-content {
    background: #fff;
    border-radius: 20px;
    padding: 50px 30px 30px;
    box-shadow: 0 10px 40px rgba(24,24,24,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,122,0,0.1);
    height: 100%;
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255,122,0,0.15);
    border-color: rgba(255,122,0,0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255,122,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a00;
    transition: all 0.3s ease;
}

.step-content:hover .step-icon {
    background: rgba(255,122,0,0.2);
    transform: scale(1.1);
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

.step-content h3 {
    color: #181818;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step-content {
        padding: 40px 25px 25px;
    }
    
    .process-section h2 {
        font-size: 2rem;
    }
    
    .process-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* FAQ Section */
.faq-section.full-width {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    color: #181818;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ff7a00, #ff9533);
    border-radius: 2px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(24,24,24,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,122,0,0.1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,122,0,0.15);
    border-color: rgba(255,122,0,0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(255,122,0,0.05), rgba(255,149,51,0.05));
    border-bottom-color: rgba(255,122,0,0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #181818;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #ff7a00;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: rgba(255,122,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a00;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    background: #ff7a00;
    color: #fff;
    transform: rotate(180deg);
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .faq-list {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-toggle {
        margin-left: 15px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-fab {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 48px rgba(37, 211, 102, 0.6), 0 6px 24px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
    }
}

.whatsapp-fab img {
    width: 38px;
    height: 38px;
    filter: brightness(0) invert(1);
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.7), 0 8px 32px rgba(0, 0, 0, 0.3);
    background: #128C7E;
    animation: none;
}

.whatsapp-popup {
    position: fixed;
    right: 28px;
    bottom: 110px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 1002;
    min-width: 180px;
    align-items: stretch;
    animation: fadeInWhatsapp 0.3s ease-out;
    border: 2px solid rgba(37, 211, 102, 0.1);
}
.whatsapp-popup.active {
    display: flex;
}
.whatsapp-popup button {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    margin: 0 12px;
    padding: 12px 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}
.whatsapp-popup button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}
@keyframes fadeInWhatsapp {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.9), rgba(218, 95, 56, 0.9)), url('../../../imgs/globaexport-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.85), rgba(218, 95, 56, 0.85));
    backdrop-filter: blur(1px);
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.legal-content {
    padding: 4rem 0;
    background: #fafafa;
}

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

.table-of-contents {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.table-of-contents h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 0.75rem;
}

.table-of-contents a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.table-of-contents a:hover {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(218, 95, 56, 0.1));
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.legal-article {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.last-updated {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(218, 95, 56, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.last-updated p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 122, 0, 0.2);
}

.legal-section h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    position: relative;
}

.legal-section h3::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.legal-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
    margin-bottom: 1.25rem;
    color: var(--text-color);
    text-align: justify;
}

.legal-section ul, .legal-section ol {
    margin: 1.25rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.6;
}

.legal-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(218, 95, 56, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-method h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-method p {
    margin: 0;
    color: var(--text-color);
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-method a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.legal-notice {
    background: rgba(255, 122, 0, 0.05);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.legal-notice p {
    margin: 0;
    font-style: italic;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-box {
        flex-direction: column;
        border-radius: 12px;
    }
    .contact-divider {
        width: 100%;
        height: 2px;
        margin: 32px 0;
    }
    .contact-info,
    .contact-form {
        max-width: 100%;
        width: 100%;
    }
    
    /* Legal Pages Mobile Responsive */
    .legal-hero {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-hero p {
        font-size: 1.1rem;
    }
    
    .legal-hero-content {
        padding: 1.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .table-of-contents {
        position: static;
        order: 2;
        padding: 1.5rem;
    }
    
    .legal-article {
        order: 1;
        padding: 2rem 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.15rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
}

/* Extra small mobile devices */
@media screen and (max-width: 480px) {
    .hero-image {
        height: 100vh;
        min-height: 100vh;
        background: url('../../imgs/mobile-bg.jpg') center center/cover no-repeat;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
        box-sizing: border-box;
        z-index: 2;
        position: relative;
    }
}