/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-white: #ffffff;
    --secondary-blue: #1e3a8a;
    --accent-red: #dc2626;
    --light-gray: #f8fafc;
    --dark-gray: #374151;
    --text-gray: #6b7280;
    --border-gray: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Favicon Styles - Make favicon appear round */
link[rel="icon"],
link[rel="shortcut icon"] {
    border-radius: 50% !important;
    overflow: hidden;
}

body {
    font-family: 'Gowun Dodum', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--primary-white);
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    background-color: #000000;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-red);
}

.nav-link::after,
.nav-link.active::after,
.header::after,
.navbar::after,
.nav-container::after {
    display: none !important;
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
}

.header,
.navbar,
.nav-container {
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(248, 250, 252, 0.45) 100%), url('assets/usaamericanflag.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(30, 58, 138, 0.02) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-red);
    backdrop-filter: blur(10px);
}

.hero-description {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-blue);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--primary-white);
    color: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
}

.btn-secondary:hover {
    background-color: var(--secondary-blue);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 600px;
    height: 600px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(220, 38, 38, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.service-card {
    background-color: var(--primary-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-title-header {
    background-color: var(--secondary-blue);
    padding: 1rem 1.5rem;
    border-radius: 8px 8px 0 0;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title-header h3 {
    color: var(--primary-white);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.service-content {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 120px;
    flex: 1;
}

.service-content:hover {
    background-color: var(--light-gray);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/usflag.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-white);
}

.service-content:hover .service-icon {
    transform: scale(1.05);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

.service-summary {
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.service-summary p {
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
    max-width: 100%;
}

.service-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-toggle i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-card.expanded .service-toggle i {
    transform: rotate(180deg);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: var(--light-gray);
    padding: 0 1.5rem;
}

.service-card.expanded .service-details {
    max-height: 500px;
    padding: 1.5rem;
}

.service-details p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.service-details p:last-child {
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(248, 250, 252, 0.45) 100%), url('assets/227.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}



.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(30, 58, 138, 0.02) 100%);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 700;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--accent-red);
    font-size: 1.25rem;
}

.feature span {
    font-weight: 500;
    color: var(--dark-gray);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 600px;
    height: 600px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(220, 38, 38, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-profile-img {
    width: 130%;
    height: 130%;
    object-fit: contain;
    border-radius: 16px;
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-rating {
    display: flex;
    justify-content: flex-end;
    gap: 0.25rem;
    margin-bottom: 0;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.125rem;
}





.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.author-info h4 {
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--accent-red);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-icon:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-white);
}

.contact-details h4 {
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.5;
}

/* Form Styles */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}



/* WhatsApp Contact Styles */
.whatsapp-contact {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    border: 2px solid #e0f2fe;
    box-shadow: var(--shadow);
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.whatsapp-icon i {
    font-size: 2.5rem;
    color: var(--primary-white);
}

.whatsapp-contact h3 {
    color: var(--secondary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.whatsapp-contact p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.whatsapp-btn {
    background: #25D366 !important;
    border: none !important;
    color: var(--primary-white) !important;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn:disabled {
    background: #9ca3af !important;
    cursor: not-allowed;
    transform: none;
}

.whatsapp-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1rem;
    font-style: italic;
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
}

.form-message-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */
.footer {
    background-color: #000000;
    color: var(--primary-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-red);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero {
        background-attachment: scroll;
        padding: 100px 0 60px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
    
    .logo-text-img {
        height: 35px;
        width: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-photo {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1;
    }

    .hero-profile-img {
        border-radius: 12px;
    }

    .about {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }



    .about-photo {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(220, 38, 38, 0.1));
        box-shadow: var(--shadow-lg);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-contact {
        padding: 1.5rem;
    }

    .whatsapp-icon {
        width: 70px;
        height: 70px;
    }

    .whatsapp-icon i {
        font-size: 2rem;
    }

    .whatsapp-contact h3 {
        font-size: 1.3rem;
    }

    .whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .service-card,
    .testimonial-card {
        margin: 0;
    }
    
    .service-title-header {
        padding: 0.75rem 1rem;
    }
    
    .service-title-header h3 {
        font-size: 1.1rem;
    }
    
    .service-content {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    .service-summary p {
        font-size: 0.9rem;
    }
    
    .service-toggle {
        width: 24px;
        height: 24px;
    }
    
    .service-toggle i {
        font-size: 0.8rem;
    }
    
    .service-details {
        padding: 0 1rem;
    }
    
    .service-card.expanded .service-details {
        padding: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-text-img {
        height: 30px;
        width: auto;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-container {
        padding: 0 15px;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
        font-weight: 700;
    }

    .hero-photo {
        max-width: 300px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .services {
        padding: 60px 0;
    }

    .about {
        padding: 60px 0;
    }

    .testimonials {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .service-card,
    .testimonial-card {
        margin: 0;
    }

    .service-title-header {
        padding: 0.5rem 0.75rem;
    }
    
    .service-title-header h3 {
        font-size: 1rem;
    }
    
    .service-content {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-icon i {
        font-size: 1.1rem;
    }
    
    .service-summary p {
        font-size: 0.85rem;
    }
    
    .service-toggle {
        width: 22px;
        height: 22px;
    }
    
    .service-toggle i {
        font-size: 0.75rem;
    }
    
    .service-details {
        padding: 0 0.75rem;
    }
    
    .service-card.expanded .service-details {
        padding: 0.75rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-rating i {
        font-size: 1.1rem;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: justify;
    }

    .about-photo {
        max-width: 320px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(220, 38, 38, 0.1));
        box-shadow: var(--shadow);
    }

    .contact-content {
        gap: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .contact-icon {
        margin: 0 auto;
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.25rem;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
    }

    .whatsapp-contact {
        padding: 1rem;
    }

    .whatsapp-icon {
        width: 60px;
        height: 60px;
    }

    .whatsapp-icon i {
        font-size: 1.8rem;
    }

    .whatsapp-contact h3 {
        font-size: 1.2rem;
    }

    .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.3rem;
        width: 100%;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: none;
    }

    .hero-buttons {
        width: 100%;
        gap: 0.75rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0 15px;
    }

    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link i {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .logo {
        width: 35px;
        height: 35px;
    }
    
    .logo-text-img {
        height: 25px;
        width: auto;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 0;
    }
    
    .service-title-header {
        padding: 0.5rem 0.75rem;
    }
    
    .service-title-header h3 {
        font-size: 1rem;
    }
    
    .service-content {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-icon i {
        font-size: 1.1rem;
    }
    
    .service-summary p {
        font-size: 0.85rem;
    }
    
    .service-toggle {
        width: 22px;
        height: 22px;
    }
    
    .service-toggle i {
        font-size: 0.75rem;
    }
    
    .service-details {
        padding: 0 0.75rem;
    }
    
    .service-card.expanded .service-details {
        padding: 0.75rem;
    }
    
    .testimonial-rating i {
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .whatsapp-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .hero-photo {
        max-width: 250px;
    }
    
    .services,
    .about,
    .testimonials,
    .contact {
        padding: 40px 0;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #25D366;
    color: var(--primary-white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn i {
    font-size: 3.5rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive styles for WhatsApp float button */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float-btn i {
        font-size: 2.5rem;
    }
}
