/* Modern Enhanced Styles - Making it Pop! */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --accent-color: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: #3b82f6;
    --secondary-color: #1e40af;
    --text-light: #64748b;
    --text-dark: #1e293b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
    font-size: 16px;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Enhanced Header */
.minimal-header {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.minimal-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.back-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.back-link:hover {
    color: var(--accent-color);
    background-color: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Enhanced Homepage - Accent Panels */
.homepage-main {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    position: relative;
}

.hero-content {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.company-name {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInDown 0.8s ease-out;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2563eb, #764ba2, transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-badge {
    display: block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    margin-top: 0;
    box-shadow: var(--shadow-md);
    animation: fadeInDown 0.8s ease-out 0.1s both;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #2563eb 0%, #764ba2 100%) 1;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both, pulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.experience-number {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
    letter-spacing: -0.02em;
    padding-right: 0.1em;
    display: inline-block;
    min-width: 1.2em;
}

.experience-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 30px rgba(37, 99, 235, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 15px 40px rgba(37, 99, 235, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.tagline {
    font-size: 1.375rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 500;
}

/* Enhanced Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.action-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.5rem 3rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.action-btn:nth-child(2) {
    animation-delay: 0.1s;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 0;
}

.action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.contact-btn {
    border-color: rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    transition: var(--transition);
}

.contact-btn:hover::before {
    opacity: 0.2;
}

.contact-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
}

.contact-btn:hover::after {
    opacity: 0.03;
}

.laws-btn {
    border-color: rgba(118, 75, 162, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}

.laws-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
    transition: var(--transition);
}

.laws-btn:hover::before {
    opacity: 0.25;
}

.laws-btn:hover {
    border-color: #764ba2;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(118, 75, 162, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f3e8ff 100%);
}

.laws-btn::after {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.laws-btn:hover::after {
    opacity: 0.03;
}

.btn-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.btn-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
    line-height: 1.3;
}

.action-btn:hover .btn-content h2 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 500;
}

/* Certifications Section */
.certifications-section {
    margin-top: 5rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.certifications-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cert-item {
    padding: 1.5rem 2rem 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 249, 255, 0.9) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0.7;
}

.cert-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(219, 234, 254, 1) 100%);
}

.btn-arrow {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    margin-left: 2rem;
    font-weight: 300;
}

.action-btn:hover .btn-arrow {
    transform: translateX(12px) scale(1.1);
    color: var(--accent-color);
}

.laws-btn .btn-arrow {
    color: #764ba2;
}

.laws-btn:hover .btn-arrow {
    color: #764ba2;
}

/* Enhanced Footer */
.minimal-footer {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid var(--border-color);
    text-align: center;
    margin-top: 4rem;
}

.minimal-footer p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.footer-contact a:hover {
    background-color: rgba(37, 99, 235, 0.1);
    text-decoration: none;
}

.footer-copyright {
    font-size: 0.875rem;
    margin-top: 1.5rem;
    opacity: 0.7;
}

/* Enhanced Laws Page */
.laws-main {
    padding: 5rem 0;
}

.laws-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out;
}

.laws-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.laws-intro {
    font-size: 1.375rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 500;
}

.laws-content {
    max-width: 950px;
    margin: 0 auto;
}

.law-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border-left: 5px solid;
    border-image: var(--accent-gradient) 1;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.law-item:nth-child(1) { animation-delay: 0.1s; }
.law-item:nth-child(2) { animation-delay: 0.2s; }
.law-item:nth-child(3) { animation-delay: 0.3s; }
.law-item:nth-child(4) { animation-delay: 0.4s; }
.law-item:nth-child(5) { animation-delay: 0.5s; }
.law-item:nth-child(6) { animation-delay: 0.6s; }

.law-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.law-item h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.law-subtitle {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.law-item > p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
    font-weight: 500;
}

.law-item ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.law-item ul li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.law-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.law-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.laws-summary {
    background: var(--accent-gradient);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    margin-top: 4rem;
    box-shadow: var(--shadow-2xl);
}

.laws-summary h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    font-weight: 800;
}

.laws-summary > p {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.compliance-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.compliance-item {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.compliance-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.compliance-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.compliance-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.laws-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.laws-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.laws-cta p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* Enhanced Contact Page */
.contact-main {
    padding: 5rem 0;
}

/* Booking Page */
.booking-main {
    padding: 5rem 0;
}

.booking-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out;
}

.booking-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.booking-header p {
    font-size: 1.375rem;
    color: var(--text-light);
    font-weight: 500;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease-out;
}

.booking-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.booking-info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease-out 0.1s both;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.booking-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 500;
}

.booking-cta-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-sm);
}

.booking-cta-box h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.booking-cta-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

.booking-contact {
    margin-top: 1rem;
}

.booking-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.booking-contact a:hover {
    background-color: rgba(37, 99, 235, 0.1);
    text-decoration: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.375rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1050px;
    margin: 0 auto;
}

.contact-form-section,
.contact-info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.contact-info-section {
    animation-delay: 0.1s;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.hidden {
    display: none;
}

.btn-primary {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Message Styles */
.form-message {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    animation: fadeInUp 0.5s ease-out;
}

.form-message-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #047857;
}

.form-message-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #b91c1c;
}

.form-message-info {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    border: 2px solid rgba(37, 99, 235, 0.3);
    color: #1e40af;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    font-size: 1.0625rem;
    font-weight: 500;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.contact-item a:hover {
    background-color: rgba(37, 99, 235, 0.1);
    text-decoration: none;
}

.service-area-box {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid;
    border-image: var(--accent-gradient) 1;
    box-shadow: var(--shadow-md);
}

.service-area-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.service-area-box ul {
    list-style: none;
    padding: 0;
}

.service-area-box ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.0625rem;
}

.service-area-box ul li::before {
    content: '📍';
    position: absolute;
    left: 0;
    font-size: 1.25rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .company-name {
        font-size: 2.25rem;
    }

    .company-name::after {
        width: 80px;
        height: 2px;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .experience-badge {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 2rem;
        margin: 1.5rem 0;
    }

    .experience-number {
        font-size: 3.5rem;
        padding-right: 0.15em;
    }

    .experience-text {
        font-size: 1.125rem;
    }

    .tagline {
        font-size: 1.125rem;
    }

    .certifications-section {
        margin-top: 3.5rem;
    }

    .certifications-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .cert-item {
        padding: 1.25rem 1.5rem;
        padding-left: 2.75rem;
        font-size: 0.9375rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .action-btn {
        padding: 2.5rem 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-content h2 {
        font-size: 1.625rem;
    }

    .btn-arrow {
        margin-left: 0;
        margin-top: 1.5rem;
        align-self: flex-end;
    }

    .laws-header h1,
    .contact-header h1,
    .booking-header h1 {
        font-size: 2.5rem;
    }

    .law-item {
        padding: 2.5rem 2rem;
    }

    .law-item h2 {
        font-size: 1.75rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .booking-info-section {
        position: static;
    }

    .booking-form-section {
        padding: 2rem;
    }

    .compliance-benefits {
        grid-template-columns: 1fr;
    }

    .minimal-header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.25rem;
    }

    .action-btn {
        padding: 2rem 1.5rem;
    }

    .btn-content h2 {
        font-size: 1.375rem;
    }

    .laws-header h1,
    .contact-header h1 {
        font-size: 2rem;
    }

    .law-item {
        padding: 2rem 1.5rem;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 2rem 1.5rem;
    }
}
