/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --navy-blue: #1e3a8a;
    --dark-navy: #1e40af;
    --light-navy: #3b82f6;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --gold: #fbbf24;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(30, 58, 138, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: var(--navy-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.company-name {
    font-size: 1.5rem;
    color: var(--navy-blue);
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.company-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.navigation {
    display: flex;
    gap: 2rem;
}

.navigation a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navigation a:hover {
    color: var(--navy-blue);
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy-blue);
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--navy-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Image */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 64, 175, 0.85) 100%);
    z-index: 1;
}

.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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 20%;
    animation-delay: 4s;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInDown 1s ease-out;
}

.hero-badge i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-blue);
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

/* Pulse Button Animation */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--navy-blue);
    transform: translateY(-2px);
}

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

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    animation: slideInUp 1s ease-out;
}

.section-badge i {
    font-size: 0.8rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: bold;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 40px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

/* Services Background Pattern */
.services-bg-pattern {
    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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(30,58,138,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.05);
    position: relative;
    overflow: hidden;
}

/* Service Background Image */
.service-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.service-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.service-content-wrapper {
    position: relative;
    z-index: 2;
}

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

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

.service-card:hover::before {
    left: 100%;
}

/* Service Number */
.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 3;
}

/* Service Features */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.feature-tag {
    background: rgba(30, 58, 138, 0.1);
    color: var(--navy-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 3;
    color: white;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.service-card:hover .service-icon::before {
    transform: scale(1);
}

.service-icon i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-description {
    color: var(--gray);
    line-height: 1.7;
}

/* Profile Section */
.profile {
    padding: 30px 0;
    background: white;
}

.profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.notary-name {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.notary-title {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.profile-description p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.credential-item i {
    color: var(--navy-blue);
    width: 20px;
}

.profile-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.image-placeholder.loaded {
    background-image: none;
}

.image-placeholder.loaded i {
    display: none;
}

/* Testimonials Section */
.testimonials {
    padding: 30px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.12);
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--gold);
    margin-right: 0.3rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-name {
    font-size: 1.2rem;
    color: var(--navy-blue);
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.client-title {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 20px 0;
    background: white;
}

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

.contact-cta {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 1.5rem 2rem;
    border-radius: 24px;
    border: 2px solid rgba(30, 58, 138, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-content::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.8" fill="rgba(30,58,138,0.04)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
}

.cta-title {
    font-size: 2.2rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #25d366 0%, #22c55e 100%);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-cta-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-cta-btn i:first-child {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.whatsapp-cta-btn i:last-child {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.whatsapp-cta-btn:hover i:last-child {
    transform: translateX(5px);
}

.cta-note {
    color: var(--gray);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.cta-note i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--navy-blue);
    color: white;
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-placeholder {
    background: var(--gold);
    color: var(--navy-blue);
}

.footer-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.footer-description {
    line-height: 1.7;
    opacity: 0.9;
}

/* Footer Services List */
.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-services-list i {
    color: var(--gold);
    font-size: 0.8rem;
    width: 12px;
}

/* Quick Contact Buttons */
.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-whatsapp,
.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-whatsapp {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
}

.footer-whatsapp:hover {
    background: #25d366;
    transform: translateY(-2px);
}

.footer-phone {
    background: rgba(251, 191, 36, 0.2);
    border-color: var(--gold);
}

.footer-phone:hover {
    background: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

.footer-email {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.footer-email:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.footer-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        justify-content: space-between;
        gap: 1rem;
    }

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

    .navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 20px 40px;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        box-shadow: 0 10px 40px rgba(30, 58, 138, 0.1);
    }

    .header.mobile-menu-open .navigation {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navigation a {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 12px;
        background: rgba(30, 58, 138, 0.05);
        transition: all 0.3s ease;
        width: 200px;
        text-align: center;
        border: 2px solid transparent;
    }

    .navigation a:hover {
        background: var(--navy-blue);
        color: white;
        border-color: var(--gold);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    }

    .navigation a::after {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        padding: 0 1rem;
    }

    .cta-content {
        padding: 1rem 1rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .whatsapp-cta-btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.2rem;
        gap: 1rem;
    }

    .image-placeholder {
        width: 200px;
        height: 240px;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .services,
    .profile,
    .testimonials,
    .contact {
        padding: 25px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .footer {
        padding: 25px 0 12px;
    }

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

    .quick-contact {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-services-list {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .navigation {
        padding: 80px 15px 30px;
        gap: 1.5rem;
    }

    .navigation a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        width: 180px;
    }

    .mobile-menu-toggle {
        width: 28px;
        height: 22px;
    }

    .mobile-menu-toggle span {
        height: 2.5px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .whatsapp-cta-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .whatsapp-cta-btn i:last-child {
        display: none;
    }

    .cta-note {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .image-placeholder {
        width: 160px;
        height: 200px;
        font-size: 2.5rem;
    }
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Reveal Animation */
.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-header,
.service-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Enhanced Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

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

/* Profile Image Hover Effect */
.profile-image:hover .image-placeholder {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(30, 58, 138, 0.4);
}

/* Enhanced WhatsApp Button */
.whatsapp-btn {
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.whatsapp-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Interactive Stars */
.stars i {
    transition: all 0.3s ease;
}

.testimonial-card:hover .stars i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px var(--gold));
}

/* Gradient Text Effect */
.hero-title {
    background: linear-gradient(45deg, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out 0.5s both;
}

/* Enhanced Navigation Hover */
.navigation a {
    position: relative;
    overflow: hidden;
}

.navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.5s ease;
}

.navigation a:hover::before {
    left: 100%;
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .hero,
    .footer {
        background: white !important;
        color: black !important;
    }

    .btn,
    .whatsapp-btn {
        border: 1px solid black;
        background: white !important;
        color: black !important;
    }
}