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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.nav-cta {
    background: #0066FF;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: #0052CC;
    transform: translateY(-1px);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #fafbfc;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: #0066FF;
    color: white;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

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

.btn-secondary:hover {
    border-color: #cbd5e0;
    color: #2d3748;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
}

.trust-item img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    object-fit: contain;
    flex-shrink: 0;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-icon.yelp {
    background: #ff1744;
    color: white;
}

.social-icon.yelp:hover {
    background: #e91e63;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: brightness(1.1);
}

.social-icon.google {
    background: #4285f4;
    color: white;
}

.social-icon.google:hover {
    background: #3367d6;
}

.social-icon.whatsapp {
    background: #25d366;
    color: white;
}

.social-icon.whatsapp:hover {
    background: #20ba5a;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.hero-visual {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Very subtle background circles */
.hero-visual::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 245, 238, 0.03);
    border-radius: 50%;
    animation: floatCircle1 6s ease-in-out infinite;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 245, 238, 0.02);
    border-radius: 50%;
    animation: floatCircle2 8s ease-in-out infinite;
}

.background-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 245, 238, 0.02);
}

.bg-circle-1 {
    top: 30%;
    right: 20%;
    width: 120px;
    height: 120px;
    animation: floatCircle3 10s ease-in-out infinite;
}

.bg-circle-2 {
    top: 60%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation: floatCircle4 7s ease-in-out infinite;
}

.bg-circle-3 {
    top: 15%;
    left: 30%;
    width: 60px;
    height: 60px;
    animation: floatCircle5 9s ease-in-out infinite;
}

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -15px); }
}

@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, 20px); }
}

@keyframes floatCircle3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 10px); }
}

@keyframes floatCircle4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -20px); }
}

@keyframes floatCircle5 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, 25px); }
}

.accounting-animation {
    position: relative;
    width: 500px;
    height: 400px;
    z-index: 2;
}

.icon-group {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.icon-group.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-group.top-left {
    top: 20%;
    left: 15%;
    animation: orbitTopLeft 8s ease-in-out infinite;
}

.icon-group.top-right {
    top: 25%;
    right: 20%;
    animation: orbitTopRight 10s ease-in-out infinite;
}

.icon-group.bottom-left {
    bottom: 25%;
    left: 20%;
    animation: orbitBottomLeft 12s ease-in-out infinite;
}

.icon-group.bottom-right {
    bottom: 20%;
    right: 15%;
    animation: orbitBottomRight 9s ease-in-out infinite;
}

.main-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #fef7f0, #fef3e2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ea580c;
    box-shadow: 0 15px 50px rgba(255, 245, 238, 0.1);
    animation: pulse 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.service-icon-small {
    width: 85px;
    height: 85px;
    background: linear-gradient(45deg, #ffffff, #fefefe);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(255, 245, 238, 0.2);
    transition: all 0.3s ease;
}

.service-icon-small:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.icon-label {
    font-size: 1rem;
    color: #c2410c;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.95);
}

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

@keyframes orbitTopLeft {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -20px) rotate(-3deg); }
    75% { transform: translate(-5px, -15px) rotate(2deg); }
}

@keyframes orbitTopRight {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, 10px) rotate(-4deg); }
    50% { transform: translate(-25px, -5px) rotate(6deg); }
    75% { transform: translate(-10px, 15px) rotate(-2deg); }
}

@keyframes orbitBottomLeft {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, 10px) rotate(3deg); }
    50% { transform: translate(25px, -10px) rotate(-5deg); }
    75% { transform: translate(5px, 20px) rotate(4deg); }
}

@keyframes orbitBottomRight {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -10px) rotate(-6deg); }
    50% { transform: translate(-10px, 15px) rotate(4deg); }
    75% { transform: translate(-30px, 5px) rotate(-2deg); }
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.company-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0066FF;
}

.company-info p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    text-align: center;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.owner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 102, 255, 0.03), transparent);
    transform: rotate(-45deg);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
}

.owner-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0066FF;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2);
    z-index: 2;
}

.owner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.owner-photo:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 102, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.owner-photo:hover .photo-overlay {
    opacity: 1;
}

.owner-details {
    position: relative;
    z-index: 2;
}

.owner-details h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.owner-details .title {
    font-size: 1rem;
    color: #0066FF;
    font-weight: 600;
    margin-bottom: 6px;
}

.owner-details .experience {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    padding: 15px 8px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0066FF;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #fdfdfd;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f7f8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: auto;
    object-fit: scale-down;
    object-position: center;
    display: block;
    max-width: 100%;
    border-radius: 8px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #fafbfc;
}

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

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin: 24px 0;
    font-size: 1.1rem;
    color: #2d3748;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.form-container {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-header p {
    color: #4a5568;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f1f5f9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
}

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

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #0066FF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    letter-spacing: -0.01em;
}

.submit-btn:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.3);
}

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

/* Success/Error Messages */
.message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
    text-align: center;
}

.success {
    background: #f0fff4;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #fc8181;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #22543d;
    color: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    max-width: 400px;
    border-left: 4px solid #38a169;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    width: 24px;
    height: 24px;
    background: #38a169;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.toast-text {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1rem;
}

.toast-message {
    font-size: 0.9rem;
    opacity: 0.9;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
}

.spinner {
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: white;
}

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

.faq-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.faq-text p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
}

.faq-list {
    list-style: none;
}

.faq-item {
    margin-bottom: 20px;
    background: #fafbfc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #0066FF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* FAQ Answer Styles */
.faq-answer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    display: none;
    animation: fadeInUp 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.6;
}

.faq-answer ul {
    list-style: none;
    margin: 16px 0;
}

.faq-answer li {
    padding: 8px 0;
    color: #2d3748;
    border-bottom: 1px solid #f7fafc;
}

.faq-answer li:last-child {
    border-bottom: none;
}

.faq-answer strong {
    color: #0066FF;
}

.faq-answer em {
    color: #4a5568;
    font-size: 0.95rem;
}

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

/* Enhanced Responsive Design */
@media (max-width: 1400px) {
    .hero-content,
    .contact-content,
    .faq-content,
    .about-content {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .services-grid {
        max-width: 1200px;
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .section-header h2,
    .about-text h2 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .accounting-animation {
        width: 400px;
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .contact-content,
    .faq-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .container {
        padding: 0 30px;
    }

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

    .about-visual {
        height: auto;
    }

    .owner-card {
        max-width: 350px;
        margin: 0 auto;
        padding: 30px 25px;
    }

    .owner-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .owner-details h4 {
        font-size: 1.4rem;
    }

    .stats-grid {
        gap: 12px;
    }

    .stat-item {
        padding: 12px 6px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
    
    .service-card {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-text .subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 40px 30px;
    }

    .social-media {
        margin-top: 30px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .section-header h2,
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .accounting-animation {
        width: 300px;
        height: 250px;
    }
    
    .main-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-icon-small {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .icon-label {
        font-size: 0.8rem;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .faq-text h2 {
        font-size: 2.5rem;
    }

    /* Mobile Trust Indicators */
    .trust-indicators {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .trust-item img {
        width: 28px !important;
        height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
    }

    /* About Section Mobile */
    .owner-card {
        padding: 25px 20px;
        max-width: 320px;
    }

    .owner-photo {
        width: 90px;
        height: 90px;
        margin-bottom: 12px;
        border-width: 2px;
    }

    .owner-details h4 {
        font-size: 1.3rem;
    }

    .owner-details .title {
        font-size: 0.95rem;
    }

    .owner-details .experience {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .stats-grid {
        gap: 8px;
    }

    .stat-item {
        padding: 10px 5px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2,
    .about-text h2 {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .accounting-animation {
        width: 250px;
        height: 200px;
    }
    
    .main-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-icon-small {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .service-image {
        border-radius: 8px;
    }
    
    .service-card {
        padding: 10px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .nav-content {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Small Mobile Trust Indicators */
    .trust-indicators {
        gap: 15px;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .trust-item img {
        width: 24px !important;
        height: 24px !important;
        max-width: 24px !important;
        max-height: 24px !important;
    }

    /* About Section Small Mobile */
    .owner-card {
        padding: 20px 15px;
        max-width: 280px;
    }

    .owner-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .owner-details h4 {
        font-size: 1.2rem;
    }

    .owner-details .title {
        font-size: 0.9rem;
    }

    .owner-details .experience {
        font-size: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-item {
        padding: 8px 4px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}

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

/* Text Selection */
::selection {
    background: rgba(0, 102, 255, 0.2);
}