/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.5;
    background-color: #fff;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f5f5f5 100%);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    width: 100%;
    min-width: 320px;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-play-state: paused;
}

section.animate {
    animation-play-state: running;
}

.hero {
    animation-delay: 0.1s;
}

.stats {
    animation-delay: 0.15s;
}

.services {
    animation-delay: 0.2s;
}

.info-section {
    animation-delay: 0.3s;
}

.about {
    animation-delay: 0.35s;
}

.contact {
    animation-delay: 0.4s;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #222;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #FF6B00;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FF6B00;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero section styles */
.hero {
    position: relative;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 1.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 40px;
    color: #ccc;
    line-height: 1.4;
}

.cta-button {
    background-color: #ff6600;
    color: #fff;
    font-weight: bold;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
    text-align: center;
}

.cta-button:hover {
    background-color: #e55f00;
    transform: translateY(-3px);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

/* Stats section styles */
.stats {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

/* About Outsourcing section styles */
.about-outsourcing {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 0;
    max-width: 800px;
    text-align: left;
}

.services-list li {
    padding: 15px 0;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list strong {
    color: #333;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 3.2rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter {
    display: inline-block;
}

.plus, .star {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #FF6B00;
    margin-left: 5px;
    font-weight: 500;
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    letter-spacing: -0.2px;
    text-align: center;
}

/* Services section styles */
.services {
    background-color: #f9f9f9;
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #222;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
    width: 100%;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out forwards;
    animation-play-state: paused;
    opacity: 0;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
}

.service-card.animate {
    animation-play-state: running;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #FF6B00;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.expanded::before {
    opacity: 1;
}

.service-header {
    position: relative;
    padding-right: 40px;
    min-height: 80px;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: -0.2px;
    line-height: 1.3;
    padding-right: 10px;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.service-toggle {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #FF6B00;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-toggle:hover {
    background-color: rgba(255, 107, 0, 0.1);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.service-card.expanded .toggle-icon {
    transform: rotate(45deg);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.4s ease;
}

.service-card.expanded .service-details {
    max-height: 1000px;
    padding-top: 20px;
}

.service-content {
    padding-bottom: 10px;
}

.service-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.service-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    margin-top: 15px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.service-content li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 15px;
}

.service-content li::before {
    content: '•';
    color: #FF6B00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-content em {
    color: #777;
    font-style: italic;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* Info Section Styles */
.info-section {
    background-color: #fff;
    padding: 100px 0;
    text-align: center;
}

.info-section:nth-of-type(even) {
    background-color: #f9f9f9;
}

.section-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -0.2px;
}

/* Custom Branding Section Styles */
.custom-branding {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    border-top: 3px solid #FF6B00;
    border-bottom: 3px solid #FF6B00;
}

.custom-branding::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FF6B00" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23FF6B00" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="%23FF6B00" opacity="0.03"/><circle cx="10" cy="60" r="1" fill="%23FF6B00" opacity="0.03"/><circle cx="90" cy="40" r="1" fill="%23FF6B00" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.custom-branding .container {
    position: relative;
    z-index: 2;
}

.custom-branding .section-title {
    font-size: clamp(2.2rem, 5.5vw, 3rem);
    color: #222;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.custom-branding .section-title::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.custom-branding .section-description {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    color: #444;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 25px;
    padding: 0 20px;
}

.custom-branding .section-description:last-child {
    margin-bottom: 0;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
}

.custom-branding .section-description strong {
    color: #FF6B00;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 107, 0, 0.1);
}

/* About Section Styles */
.about {
    background-color: #fff;
    padding: 100px 0;
    text-align: center;
}

/* Contact Section Styles */
.contact {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
    display: block;
    font-weight: 500;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background-color: #FF6B00;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}

.submit-button:hover {
    background-color: #e55f00;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-button:disabled:hover {
    background-color: #ccc;
    transform: none;
    box-shadow: none;
}

.thank-you-message {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FF6B00;
    animation: fadeIn 0.5s ease-in-out;
}

.thank-you-message h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.thank-you-message p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Footer styles */
.footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 60px 0 30px;
    border-top: 3px solid #FF6B00;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    min-width: 0;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #FF6B00;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #bbb;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 2px 0;
}

.footer-link:hover {
    color: #FF6B00;
    transform: translateX(5px);
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #FF6B00;
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-newsletter {
    background: linear-gradient(135deg, #222 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #e55f00);
}

.footer-newsletter .footer-heading {
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-newsletter .footer-heading::after {
    display: none;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    background-color: #333;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background-color: #3a3a3a;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    background: linear-gradient(135deg, #FF6B00, #e55f00);
    color: #fff;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #e55f00, #d54f00);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.send-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    font-weight: 500;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.legal-link {
    color: #888;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.legal-link:hover {
    color: #FF6B00;
}

.legal-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #FF6B00;
    transition: width 0.3s ease;
}

.legal-link:hover::after {
    width: 100%;
}

.country-selector {
    background-color: #333;
    color: #fff;
    border: 1px solid #444;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.country-selector:focus {
    outline: none;
    border-color: #FF6B00;
    background-color: #3a3a3a;
}

.country-selector:hover {
    border-color: #555;
}

/* Fixed Social Icons */
.fixed-social-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icon-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-icon-fixed.telegram {
    background-color: #229ED9;
}

.social-icon-fixed.whatsapp {
    background-color: #25D366;
}

.social-icon-fixed:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    filter: brightness(1.05);
}

.icon-img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

/* Responsive Media Queries */

/* Large tablets and small desktops (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .fixed-social-icons {
        bottom: 25px;
        right: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .footer-main {
        gap: 40px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 15px 0;
        gap: 15px;
    }
    
    .nav-list {
        gap: 25px;
    }
    
    .hero {
        min-height: 450px;
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .stats {
        padding: 70px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 600px;
    }
    
    .services, .info-section, .about, .custom-branding {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-header {
        min-height: 70px;
        padding-right: 35px;
    }
    
    .service-toggle {
        top: 10px;
        right: 10px;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-form-container {
        padding: 35px 25px;
        margin: 0 10px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 8px;
    }
    
    .newsletter-input {
        border-radius: 8px 8px 0 0;
        padding: 16px;
    }
    
    .newsletter-button {
        border-radius: 0 0 8px 8px;
        padding: 16px;
        text-align: center;
    }
    
    .fixed-social-icons {
        bottom: 20px;
        right: 20px;
    }
    
    .social-icon-fixed {
        width: 50px;
        height: 50px;
    }
    
    .icon-img {
        width: 24px;
        height: 24px;
    }
}

/* Small tablets and large phones (576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
        gap: 12px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-list {
        justify-content: center;
        gap: 30px;
    }
    
    .hero {
        min-height: 400px;
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .services, .info-section, .about, .custom-branding {
        padding: 70px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-header {
        min-height: 60px;
        padding-right: 40px;
    }
    
    .service-title {
        font-size: 1.05rem;
        line-height: 1.4;
    }
    
    .service-toggle {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 1.4rem;
    }
    
    .contact {
        padding: 70px 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        margin: 0 5px;
    }
    
    .submit-button {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-newsletter {
        padding: 25px 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 30px;
    }
    
    .fixed-social-icons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .social-icon-fixed {
        width: 48px;
        height: 48px;
    }
    
    .icon-img {
        width: 22px;
        height: 22px;
    }
}

/* Mobile phones (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav-list {
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 107, 0, 0.1);
    }
    
    .hero {
        min-height: 380px;
    }
    
    .hero-content {
        padding: 20px 10px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 18px 24px;
        font-size: 1.05rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 300px;
    }
    
    .services, .info-section, .about, .custom-branding {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 20px 18px;
    }
    
    .service-header {
        min-height: 55px;
        padding-right: 35px;
    }
    
    .service-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .service-price {
        font-size: 1.3rem;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 25px 18px;
        margin: 0;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .footer-newsletter {
        padding: 20px 15px;
    }
    
    .newsletter-input {
        padding: 14px;
        font-size: 1rem;
    }
    
    .newsletter-button {
        padding: 14px;
    }
    
    .fixed-social-icons {
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }
    
    .social-icon-fixed {
        width: 45px;
        height: 45px;
    }
    
    .icon-img {
        width: 20px;
        height: 20px;
    }
}

/* Very small phones (360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
    
    .hero {
        min-height: 350px;
    }
    
    .hero-content {
        padding: 15px 8px;
    }
    
    .cta-button {
        padding: 16px 20px;
        font-size: 1rem;
        max-width: 250px;
    }
    
    .services, .info-section, .about, .custom-branding {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 18px 15px;
    }
    
    .service-header {
        min-height: 50px;
        padding-right: 32px;
    }
    
    .service-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .service-price {
        font-size: 1.2rem;
    }
    
    .service-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
        top: 6px;
        right: 6px;
    }
    
    .contact {
        padding: 50px 0;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-newsletter {
        padding: 18px 12px;
    }
    
    .fixed-social-icons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .social-icon-fixed {
        width: 42px;
        height: 42px;
    }
    
    .icon-img {
        width: 18px;
        height: 18px;
    }
}

/* Extra small phones (320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding: 8px 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .hero {
        min-height: 320px;
    }
    
    .hero-content {
        padding: 10px 5px;
    }
    
    .cta-button {
        padding: 14px 18px;
        font-size: 0.95rem;
        max-width: 220px;
    }
    
    .services, .info-section, .about, .custom-branding {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 15px 12px;
    }
    
    .service-header {
        min-height: 45px;
        padding-right: 30px;
    }
    
    .service-title {
        font-size: 0.9rem;
    }
    
    .service-price {
        font-size: 1.1rem;
    }
    
    .service-toggle {
        width: 26px;
        height: 26px;
        font-size: 1.1rem;
        top: 4px;
        right: 4px;
    }
    
    .contact {
        padding: 40px 0;
    }
    
    .contact-form-container {
        padding: 18px 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .footer-newsletter {
        padding: 15px 10px;
    }
    
    .newsletter-input {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .newsletter-button {
        padding: 12px;
    }
    
    .fixed-social-icons {
        bottom: 12px;
        right: 12px;
        gap: 6px;
    }
    
    .social-icon-fixed {
        width: 38px;
        height: 38px;
    }
    
    .icon-img {
        width: 16px;
        height: 16px;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .nav-link,
    .footer-link,
    .legal-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
    }
    
    .service-toggle {
        min-width: 44px;
        min-height: 44px;
    }
    
    .cta-button,
    .submit-button {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Prevent zoom on input focus */
    input,
    textarea,
    select {
        font-size: 16px;
    }
    
    /* Better spacing for touch */
    .form-group {
        margin-bottom: 30px;
    }
    
    /* Improved hover states for touch */
    .service-card:hover {
        transform: none;
    }
    
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Better newsletter form on mobile */
    .newsletter-form {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Improved social icons positioning */
    .fixed-social-icons {
        z-index: 1001;
    }
    
    .social-icon-fixed:active {
        transform: scale(0.95);
    }
}

/* Landscape phone optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 300px;
    }
    
    .hero-content {
        padding: 15px 20px;
    }
    
    .stats {
        padding: 50px 0;
    }
    
    .services, .info-section, .about, .custom-branding {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .icon-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}
