/* Global Styles for Hitech Solutions Website - Master Template */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: #fff;
    color: #111;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 40px;
    filter: brightness(1.1);
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-links a:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-menu li {
    padding: 0;
}

.mobile-menu a {
    display: block;
    color: #111;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 2.5rem;
}

/* Hero Section */
.hero {
    min-height: 40vh;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 2rem;
}

.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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');

}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Service pages - centered single column layout */
.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.page-hero-content .hero-text {
    text-align: center;
}

.page-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #111;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #111;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Back Button (for service pages) */
.back-button {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    color: #111;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #fff, black);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Floating Service Icons (index page specific) */
.floating-services {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.service-float {
    position: absolute;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    color: #111;
    font-weight: 600;
    font-size: 0.9rem;
    animation: floatService 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-float:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.service-float i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.service-float:nth-child(1) {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.service-float:nth-child(1) i {
    color: #ff6b6b;
}

.service-float:nth-child(2) i {
    color: #4ecdc4;
}

.service-float:nth-child(3) i {
    color: #45b7d1;
}

.service-float:nth-child(4) i {
    color: #e21a1a;
}

.service-float:nth-child(2) {
    top: 25%;
    right: 45%;
    animation-delay: 1.5s;
}

.service-float:nth-child(3) {
    bottom: 35%;
    right: 5%;
    animation-delay: 3s;
}

.service-float:nth-child(4) {
    bottom: 15%;
    right: 35%;
    animation-delay: 4.5s;
}

@keyframes floatService {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Content Sections */
.content-section,
.pillars,
.partners,
.features,
.ai-features,
.use-cases,
.benefits,
.solutions,
.deployment,
.pricing,
.infrastructure,
.performance,
.services,
.technologies,
.security,
.support,
.compliance,
.response,
.capabilities {
    padding: 4rem 2rem;
    background: #fff;
    position: relative;
    color: #111;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
}

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

/* Universal Grid - Max 3 columns */
.content-grid,
.pillars-grid,
.features-grid,
.ai-grid,
.ai-features-grid,
.solutions-grid,
.deployment-grid,
.pricing-grid,
.infrastructure-grid,
.performance-grid,
.services-grid,
.technologies-grid,
.security-grid,
.support-grid,
.compliance-grid,
.response-grid,
.capabilities-grid,
.use-cases-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    /* center cards inside their grid cells */
}

/* Partners grid - special layout */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem 2.5rem;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

/* Universal Card Styles */
.card,
.pillar-card,
.feature-card,
.ai-card,
.solution-card,
.deployment-card,
.tier-card,
.infrastructure-card,
.performance-card,
.service-card,
.technology-card,
.security-card,
.support-card,
.compliance-card,
.response-card,
.capability-card,
.use-case-card,
.benefit-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #111;
    color: #111;
    cursor: pointer;
    text-align: left;
}

.card:hover,
.pillar-card:hover,
.feature-card:hover,
.ai-card:hover,
.solution-card:hover,
.deployment-card:hover,
.tier-card:hover,
.infrastructure-card:hover,
.performance-card:hover,
.service-card:hover,
.technology-card:hover,
.security-card:hover,
.support-card:hover,
.compliance-card:hover,
.response-card:hover,
.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.use-case-card:hover,
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.card-icon,
.pillar-icon,
.feature-icon,
.ai-icon,
.solution-icon,
.deployment-icon,
.infrastructure-icon,
.performance-icon,
.service-icon,
.technology-icon,
.security-icon,
.support-icon,
.compliance-icon,
.response-icon,
.capability-icon {
    width: 80px;
    height: 80px;
    background: var(--icon-bg, #111);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--icon-color, #fff);
}

.use-case-icon,
.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--icon-bg, #111);
    color: var(--icon-color, #fff);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.card h3,
.pillar-card h3,
.feature-card h3,
.ai-card h3,
.solution-card h3,
.deployment-card h3,
.infrastructure-card h3,
.performance-card h3,
.service-card h3,
.technology-card h3,
.security-card h3,
.support-card h3,
.compliance-card h3,
.response-card h3,
.capability-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.use-case-card h4,
.benefit-card h4,
.tier-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
}

.card p,
.pillar-card p,
.feature-card p,
.ai-card p,
.use-case-card p,
.benefit-card p,
.solution-card p,
.deployment-card p,
.tier-card p,
.infrastructure-card p,
.performance-card p,
.service-card p,
.technology-card p,
.security-card p,
.support-card p,
.compliance-card p,
.response-card p,
.capability-card p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card ul,
.pillar-card ul,
.feature-card ul,
.ai-card ul,
.solution-card ul {
    list-style: none;
}

.card ul li,
.pillar-card ul li,
.feature-card ul li,
.ai-card ul li,
.solution-card ul li {
    padding: 0.5rem 0;
    color: #444;
    position: relative;
    padding-left: 1.5rem;
}

.card ul li::before,
.pillar-card ul li::before,
.feature-card ul li::before,
.ai-card ul li::before,
.solution-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #111;
    font-weight: bold;
}

/* Partners/Logos Section */
.partner-category h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.partner-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #111;
    border-radius: 2px;
}

.partner-logo {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #111;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: none;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #111;
}

/* Footer */
.footer {
    background: #fff;
    color: #111;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::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="grid" width="5" height="5" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');

}

@keyframes slidePattern {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(15px) translateY(15px);
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* CTA / Full-width highlighted sections (e.g., 'Experience the Future of Voice AI') */
.cta,
.cta-section {
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
    width: 100%;
    position: relative;
}

.cta-container,
.cta-section .cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cta h2,
.cta-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111;
}

.cta p,
.cta-section p {
    font-size: 1.0rem;
    color: black;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta .cta-button,
.cta-section .cta-button {
    background: #fff;
    color: black;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.cta .cta-button:hover,
.cta-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.footer h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111;
}

.footer-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #111;
    background: rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transition: left 0.5s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #111;
    min-width: 1.5rem;
}

.contact-item span {
    font-weight: 500;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form Styles */
.contact-form-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.contact-form {
    background: rgba(0, 0, 0, 0.03);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    color: #111;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.form-select {
    cursor: pointer;
    color: #111;
}

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

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

.form-submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 120px 1rem 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    /* 2 columns on tablet */
    .content-grid,
    .pillars-grid,
    .features-grid,
    .ai-grid,
    .solutions-grid,
    .deployment-grid,
    .infrastructure-grid,
    .performance-grid,
    .services-grid,
    .technologies-grid,
    .security-grid,
    .support-grid,
    .compliance-grid,
    .response-grid,
    .capabilities-grid,
    .use-cases-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* partners grid: 3 columns on <=1024 */
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: relative;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 40px;
    }

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

    .hero {
        padding: 100px 1rem 2rem;
        min-height: 80vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .page-hero-content {
        text-align: center;
    }

    /* Hide floating services on mobile */
    .floating-services {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

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

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .content-section,
    .pillars,
    .partners,
    .features,
    .ai-features,
    .use-cases,
    .benefits,
    .solutions {
        padding: 4rem 1rem;
    }

    /* Single column on mobile */
    .content-grid,
    .pillars-grid,
    .partners-grid,
    .features-grid,
    .ai-grid,
    .use-cases-grid,
    .benefits-grid,
    .solutions-grid,
    .deployment-grid,
    .infrastructure-grid,
    .performance-grid,
    .services-grid,
    .technologies-grid,
    .security-grid,
    .support-grid,
    .compliance-grid,
    .response-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card,
    .pillar-card,
    .feature-card,
    .ai-card {
        padding: 2rem 1.5rem;
    }

    .card-icon,
    .pillar-icon,
    .feature-icon,
    .ai-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .contact-item {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .footer {
        padding: 3rem 1rem 2rem;
    }

    .footer h3 {
        font-size: 1.8rem;
    }

    .footer-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* CTA Mobile Styles */
    .cta,
    .cta-section {
        padding: 3.5rem 1.5rem;
    }

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

    .cta p,
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Contact Form Mobile Styles */
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

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

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .form-submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

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

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .card,
    .pillar-card,
    .feature-card {
        padding: 1.5rem 1rem;
    }

    .card-icon,
    .pillar-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .card h3,
    .pillar-card h3,
    .feature-card h3 {
        font-size: 1.3rem;
    }

    .use-case-card h4,
    .benefit-card h4 {
        font-size: 1.1rem;
    }

    .footer h3 {
        font-size: 1.5rem;
    }

    .cta h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

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

    .cta h2,
    .cta-section h2 {
        font-size: 1.4rem;
    }
}