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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.brand-highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Page Header */
.page-header {
    height: 60vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamond" patternUnits="userSpaceOnUse" width="20" height="20"><polygon fill="rgba(255,215,0,0.1)" points="10,0 20,10 10,20 0,10"/></pattern></defs><rect width="100" height="100" fill="url(%23diamond)"/></svg>');
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.header-content p {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FFD700;
}

.breadcrumb span {
    color: #777;
}

/* Company Overview */
.company-overview {
    padding: 100px 0;
    background: #fff;
}

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

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.overview-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.overview-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.overview-image {
    text-align: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    border: 2px solid #FFD700;
    border-radius: 20px;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.image-placeholder i {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Our Story Timeline */
.our-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    color: #fff;
}

.story-timeline {
    margin-top: 60px;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #FFD700, #FFA500);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    position: relative;
    z-index: 2;
    margin: 0 40px;
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #FFD700;
    max-width: 400px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Our Expertise */
.our-expertise {
    padding: 100px 0;
    background: #fff;
}

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

.expertise-item {
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.expertise-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.expertise-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
}

/* Trust & Legacy */
.trust-legacy {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    color: #fff;
}

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

.legacy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.legacy-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.trust-point i {
    font-size: 1.8rem;
    color: #FFD700;
    margin-top: 5px;
}

.trust-point h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.trust-point p {
    color: #ccc;
    line-height: 1.6;
}

.legacy-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.stat-card p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Our Values */
.our-values {
    padding: 100px 0;
    background: #fff;
}

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

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-item:hover {
    background: #fff;
    border-color: #FFD700;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.company-subtitle {
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 300;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #FFD700;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamond" patternUnits="userSpaceOnUse" width="20" height="20"><polygon fill="rgba(255,215,0,0.1)" points="10,0 20,10 10,20 0,10"/></pattern></defs><rect width="100" height="100" fill="url(%23diamond)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Sections */
.showcase, .why-choose, .testimonials, .cta-section {
    padding: 100px 0;
}

.showcase {
    background: #fff;
    color: #333;
}

.why-choose {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    color: #fff;
}

.testimonials {
    background: #fff;
    color: #333;
}

.cta-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.showcase-item {
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #FFD700;
}

.showcase-image {
    margin-bottom: 20px;
}

.placeholder-diamond {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.showcase-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.showcase-item p {
    color: #666;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
}

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

.feature-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-item {
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 4px solid #FFD700;
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #777;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #000;
    color: #FFD700;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #000;
    border-color: #000;
}

.cta-buttons .btn-secondary:hover {
    background: #000;
    color: #FFD700;
}

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

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p, .footer-section li {
    color: #ccc;
    margin-bottom: 10px;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #FFD700;
    margin-top: 2px;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

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

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

    .story-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }

    .timeline-content {
        max-width: none;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .hero-stats {
        position: relative;
        bottom: auto;
        transform: none;
        margin-top: 40px;
        flex-direction: column;
        gap: 20px;
    }

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

    .features-grid, .showcase-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

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

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .feature-item, .showcase-item, .testimonial-item {
        padding: 30px 20px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
    background: #fff;
}

.main-services {
    padding: 80px 0;
    background: #f8f8f8;
}

.service-item {
    margin-bottom: 100px;
    padding: 60px 0;
}

.service-item.reverse .service-content {
    flex-direction: row-reverse;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-text {
    flex: 2;
}

.service-image {
    flex: 1;
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.service-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 30px;
}

.service-features h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.service-features li i {
    color: #FFD700;
    font-size: 0.9rem;
}

.service-specialties,
.service-categories,
.certification-partners,
.export-regions {
    margin-top: 30px;
}

.service-specialties h4,
.service-categories h4,
.certification-partners h4,
.export-regions h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specialty-tags span {
    background: #FFD700;
    color: #000;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-grid,
.partner-logos,
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.category-item,
.partner-item,
.region-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.category-item:hover,
.partner-item:hover,
.region-item:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
}

.category-item h5,
.partner-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.region-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.region-item i {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Process Section */
.our-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    color: #fff;
}

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

.step-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.step-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Service Benefits */
.service-benefits {
    padding: 100px 0;
    background: #fff;
}

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

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f8f8;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    background: #fff;
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

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

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

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-text small {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.business-hours {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.business-hours h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    font-weight: 500;
    color: #333;
}

.hours-item span:last-child {
    color: #666;
}

/* Contact Form */
.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #333;
}

.form-container > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: #f0f0f0;
    border-color: #FFD700;
}

.checkbox-item input[type="checkbox"] {
    margin-top: 2px;
    transform: scale(1.2);
    accent-color: #FFD700;
}

.checkbox-item label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    cursor: pointer;
    margin: 0;
}

.checkbox-item label i {
    color: #FFD700;
    margin-right: 8px;
}

.checkbox-item label strong {
    color: #333;
}

.privacy-note {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.privacy-note i {
    color: #FFD700;
    margin-right: 8px;
}

.privacy-note a {
    color: #FFD700;
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #fff;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 60px;
}

.map-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.direction-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
}

.direction-item i {
    font-size: 1.5rem;
    color: #FFD700;
    margin-top: 5px;
}

.direction-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.direction-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-embed iframe {
    border-radius: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-item a {
    color: #FFD700;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .service-item.reverse .service-content {
        flex-direction: column;
    }
    
    .service-text h3 {
        font-size: 2rem;
    }
    
    .category-grid,
    .partner-logos,
    .region-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page Responsive */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
         .faq-grid {
         grid-template-columns: 1fr;
     }
 }

/* Policy Pages Styles */
.policy-content {
    padding: 100px 0;
    background: #fff;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.policy-intro {
    margin-bottom: 60px;
    text-align: center;
}

.last-updated {
    background: #f8f8f8;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #666;
    display: inline-block;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}

.policy-sections {
    margin-bottom: 60px;
}

.policy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700;
}

.policy-section h3 {
    font-size: 1.4rem;
    color: #444;
    margin: 25px 0 15px 0;
}

.policy-section h4 {
    font-size: 1.2rem;
    color: #555;
    margin: 20px 0 10px 0;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0 20px 20px;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

.policy-section a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-section strong {
    color: #333;
    font-weight: 600;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 15px;
}

.contact-method h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

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

.contact-method a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.policy-footer {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.policy-footer p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

/* Policy Pages Responsive */
@media (max-width: 768px) {
    .policy-wrapper {
        padding: 0 10px;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .policy-intro {
        margin-bottom: 40px;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .last-updated {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

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