/* Add at the beginning of the file */
body {
    position: relative;
}

/* Background Watermark */
.background-watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/naiyo24_logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Ensure content sections have proper background */
.service-hero,
.service-overview,
.app-types-section,
.pricing-section,
.process-section,
.faq-section,
.cta-section {
    position: relative;
    z-index: 1;
}

/* Service Hero Section */
.service-hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/naiyo24_logo.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.service-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

.service-tagline {
    font-size: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* Service Overview Section */
.service-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.section-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #a5a5a5);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

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

.feature-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000, #adadad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-image {
        order: -1;
        text-align: center;
    }
    
    .overview-image img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-overview {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Modern Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

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

.pricing-header h2 {
    font-size: 2.5rem;
    color: #030506;
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured {
    border: 2px solid #040506;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #000000;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-card-header h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 20px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.2rem;
    vertical-align: super;
    color: #2c3e50;
    margin-right: 5px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #020203;
    line-height: 1.1;
    word-break: break-all;
}

.period {
    font-size: 1rem;
    color: #888;
    margin-left: 2px;
}

.pricing-description {
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 10px;
}

.pricing-features {
    margin: 30px 0;
}

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

.pricing-features li {
    padding: 12px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-features li i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.pricing-features li i.fa-check {
    color: #28a745;
}

.pricing-features li i.fa-times {
    color: #dc3545;
}

.pricing-features li.disabled {
    color: #adb5bd;
}

.pricing-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #060607;
    color: #0c0d0e;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #080808;
    color: white;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #6c757d;
    font-size: 0.9rem;
}

.pricing-note i {
    color: #090a0a;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Modern Process Section Styles */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/naiyo24_logo.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header .section-title {
    font-size: 2.8rem;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.process-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #000000;
    border-radius: 2px;
}

.process-header .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #000000, #333);
    border-radius: 2px;
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #000000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-content {
    width: 45%;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-content:hover .step-icon {
    transform: scale(1.1);
}

.step-details h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.step-details p {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
    font-size: 1rem;
}

.step-features li i {
    color: #000000;
    margin-right: 10px;
    font-size: 1.1rem;
}

.process-step:nth-child(odd) .step-content {
    margin-right: 55%;
}

.process-step:nth-child(even) .step-content {
    margin-left: 55%;
}

@media (max-width: 992px) {
    .process-timeline::before {
        left: 30px;
    }

    .step-number {
        left: 30px;
    }

    .step-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .process-header .section-title {
        font-size: 2.2rem;
    }

    .step-content {
        padding: 30px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-details h3 {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

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

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    padding-left: 30px;
    padding-right: 40px;
    transition: color 0.3s ease;
}

.faq-item h3::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    opacity: 0.8;
}

.faq-item p {
    color: #333;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
    margin-top: 15px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.faq-item.active p {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.faq-item p::before {
    content: 'A:';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    opacity: 0.8;
}

.faq-item .faq-icon {
    position: absolute;
    right: 30px;
    top: 30px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../images/services-hero.png') center/cover no-repeat;
    text-align: center;
    color: var(--text-color);
}

.cta-section h2 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 3rem;
    }

    .service-tagline {
        font-size: 1.5rem;
    }

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

    .overview-image {
        order: -1;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-item .faq-icon {
        right: 20px;
        top: 20px;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-tagline {
        font-size: 1.2rem;
    }

    .feature-card {
        padding: 20px;
    }
}

/* Modernized Modal Form Styles with Gradient */
.modal-content {
    max-width: 600px;
    width: 90%;
    padding: 40px;
    background: linear-gradient(135deg, #111 0%, #222 60%, #fff 100%);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    color: #fff;
    backdrop-filter: blur(2px);
    border: 1.5px solid rgba(255,255,255,0.08);
}

.modal-content h2 {
    color: #fff;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 18px;
}

.form-group label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    color: #fff;
    background: rgba(20,20,20,0.85);
    margin-bottom: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: box-shadow 0.3s, background 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(40,40,40,0.95);
    box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(0,0,0,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #e0e0e0;
    opacity: 1;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
    padding-right: 48px;
}

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

.billing-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.billing-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.billing-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.billing-label {
    display: block;
    padding: 13px 0;
    background: linear-gradient(90deg, #222 60%, #444 100%);
    border: 2px solid #333;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s;
    font-weight: 500;
}

.billing-option input[type="radio"]:checked + .billing-label {
    background: linear-gradient(90deg, #fff 0%, #e0e0e0 100%);
    color: #111;
    border-color: #fff;
    box-shadow: 0 2px 12px rgba(255,255,255,0.10);
}

.billing-option:hover .billing-label {
    background: linear-gradient(90deg, #333 60%, #555 100%);
    border-color: #fff;
}

.btn.btn-primary, .btn-primary {
    background: linear-gradient(90deg, #111 0%, #444 100%);
    color: #fff;
    border: none;
    padding: 15px 38px;
    border-radius: 32px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
}

.btn.btn-primary:hover, .btn-primary:hover {
    background: linear-gradient(90deg, #fff 0%, #bbb 100%);
    color: #111;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22), 0 0 8px #fff;
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

/* Modal close button */
.modal-close {
    color: #fff;
    background: rgba(0,0,0,0.25);
    border-radius: 50%;
    font-size: 1.5rem;
    position: absolute;
    top: 18px;
    right: 24px;
    cursor: pointer;
    transition: background 0.2s;
    padding: 4px 10px;
}
.modal-close:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 28px;
    }
    .billing-options {
        flex-direction: column;
        gap: 10px;
    }
    .billing-label {
        padding: 11px 0;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 14px;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        padding: 9px 10px;
        font-size: 0.97rem;
    }
}

/* App Types Section Styles */
.app-types-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.app-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.app-type-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.app-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.app-type-icon i {
    font-size: 30px;
    color: #ffffff;
}

.app-type-card h3 {
    color: #000000;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.app-type-card p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .app-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .app-type-card {
        padding: 20px;
    }

    .app-type-icon {
        width: 60px;
        height: 60px;
    }

    .app-type-icon i {
        font-size: 25px;
    }

    .app-type-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .app-types-grid {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .app-type-card {
        padding: 18px;
    }
    
    .app-type-card h3 {
        font-size: 1rem;
    }
    
    .app-type-card p {
        font-size: 0.9rem;
    }
}

/* Website Types Section Styles */
.website-types-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.website-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.website-type-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.website-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.website-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000, #adadad);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.website-type-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.website-type-card:hover .website-type-icon {
    transform: scale(1.1);
}

.website-type-card h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 15px;
}

.website-type-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .website-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .website-type-card {
        padding: 25px;
    }
    
    .website-type-icon {
        width: 50px;
        height: 50px;
    }
    
    .website-type-icon i {
        font-size: 1.5rem;
    }
    
    .website-type-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .website-types-grid {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .website-type-card {
        padding: 20px;
    }
    
    .website-type-card h3 {
        font-size: 1.1rem;
    }
    
    .website-type-card p {
        font-size: 0.9rem;
    }
}

/* Company Types Section Styles */
.company-types-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.company-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.company-type-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.company-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.company-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000, #adadad);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.company-type-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.company-type-card:hover .company-type-icon {
    transform: scale(1.1);
}

.company-type-card h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 15px;
}

.company-type-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .company-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .company-type-card {
        padding: 25px;
    }
    
    .company-type-icon {
        width: 50px;
        height: 50px;
    }
    
    .company-type-icon i {
        font-size: 1.5rem;
    }
    
    .company-type-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .company-types-grid {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .company-type-card {
        padding: 20px;
    }
    
    .company-type-card h3 {
        font-size: 1.1rem;
    }
    
    .company-type-card p {
        font-size: 0.9rem;
    }
}

/* --- Market Research Extra Sections --- */

.what-we-offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.offering-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.offering-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.offering-card h3 {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 12px;
}
.offering-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.use-cases-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.use-case-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    padding: 32px 28px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}
.use-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.use-case-card h3 {
    font-size: 1.15rem;
    color: #000;
    margin-bottom: 10px;
}
.use-case-card p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.6;
}

.why-choose-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.choose-us-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.choose-us-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.choose-us-card h3 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 10px;
}
.choose-us-card p {
    color: #666;
    font-size: 0.97rem;
    line-height: 1.5;
}

.tools-methodologies-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.tools-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.tool-method-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tool-method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.tool-method-card h3 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 10px;
}
.tool-method-card p {
    color: #666;
    font-size: 0.97rem;
    line-height: 1.5;
}

.testimonials-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    padding: 32px 28px;
    text-align: left;
    position: relative;
    font-style: italic;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.testimonial-card p {
    color: #222;
    font-size: 1.05rem;
    margin-bottom: 18px;
}
.testimonial-author {
    color: #666;
    font-size: 0.97rem;
    font-style: normal;
    font-weight: 600;
    position: absolute;
    bottom: 18px;
    right: 28px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .offerings-grid,
    .use-cases-grid,
    .choose-us-grid,
    .tools-methods-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    .testimonial-card {
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .offerings-grid,
    .use-cases-grid,
    .choose-us-grid,
    .tools-methods-grid,
    .testimonials-grid {
        max-width: 100%;
        padding: 0 15px;
    }
}
@media (max-width: 600px) {
    .what-we-offer-section,
    .use-cases-section,
    .why-choose-us-section,
    .tools-methodologies-section,
    .testimonials-section {
        padding: 40px 0 30px 0;
    }
    .offering-card,
    .use-case-card,
    .choose-us-card,
    .tool-method-card,
    .testimonial-card {
        padding: 18px 10px;
    }
    .testimonial-author {
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .offerings-grid,
    .use-cases-grid,
    .choose-us-grid,
    .tools-methods-grid,
    .testimonials-grid {
        padding: 0 10px;
    }
    
    .offering-card,
    .use-case-card,
    .choose-us-card,
    .tool-method-card {
        padding: 16px 12px;
    }
    
    .offering-card h3,
    .use-case-card h3,
    .choose-us-card h3,
    .tool-method-card h3 {
        font-size: 1.1rem;
    }
    
    .offering-card p,
    .use-case-card p,
    .choose-us-card p,
    .tool-method-card p {
        font-size: 0.9rem;
    }
}

/* Modern Stylish Buttons for Hero Section */
/* Remove all .cta-buttons and hero-section .btn styles */

.section-highlight {
  animation: sectionHighlightFade 1.2s;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px #ffffff;
}

@keyframes sectionHighlightFade {
  0% { background: #ffffff; box-shadow: 0 0 0 4px #f6f6f6; }
  80% { background: #f6f6f6; box-shadow: 0 0 0 4px #ececec; }
  100% { background: inherit; box-shadow: none; }
}

/* Hero CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 36px;
    z-index: 2;
    position: relative;
}
.btn-blackwhite.btn-hero {
    font-size: 1.25rem;
    font-weight: 800;
    padding: 18px 38px;
    border-radius: 40px;
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 6px 32px rgba(0,0,0,0.18);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.btn-blackwhite.btn-hero:hover, .btn-blackwhite.btn-hero:focus {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.btn-blackwhite.btn-hero:active {
    background: #222;
    color: #fff;
    border: 2px solid #fff;
}
@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
    }
    .btn-blackwhite.btn-hero {
        width: 90%;
        font-size: 1.15rem;
        padding: 20px 0;
        min-width: 200px;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

.landing-section .hero-logo-bg {
    position: absolute;
    top: 50%;
    right: 4vw;
    transform: translateY(-50%) scale(1.35);
    width: 55vw;
    max-width: 600px;
    min-width: 220px;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
    transition: opacity 0.3s, filter 0.3s;
}
@media (max-width: 900px) {
    .landing-section .hero-logo-bg {
        width: 80vw;
        max-width: 340px;
        right: -10px;
        opacity: 0.22;
        transform: translateY(-50%) scale(1.08);
    }
}
@media (max-width: 600px) {
    .landing-section .hero-logo-bg {
        width: 90vw;
        max-width: 220px;
        right: -10px;
        opacity: 0.25;
        transform: translateY(-50%) scale(1);
    }
}