/* ACTIVE REGISTRATION SERVICE - Professional IP Law Firm Styles */

/* Disclaimer Modal Styles */
.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.disclaimer-modal {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.3s ease-out;
}

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

.disclaimer-logo {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e2e8f0;
}

.disclaimer-logo-img {
    max-height: 50px;
    max-width: 180px;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
}

.disclaimer-modal h2 {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-align: center;
    border-bottom: 2px solid #0d9488;
    padding-bottom: 0.6rem;
}

.disclaimer-content {
    margin-bottom: 1rem;
    line-height: 1.3;
    font-size: 0.8rem;
}

.disclaimer-content p {
    margin-bottom: 0.6rem;
    color: #4a5568;
}

.disclaimer-content ul {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
}

.disclaimer-content li {
    margin-bottom: 0.4rem;
    padding-left: 1rem;
    position: relative;
    color: #4a5568;
    font-size: 0.75rem;
}

.disclaimer-content li:before {
    content: "•";
    color: #0d9488;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.disclaimer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.disclaimer-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.disclaimer-btn.accept {
    background-color: #0d9488;
    color: white;
}

.disclaimer-btn.accept:hover {
    background-color: #14b8a6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
}

.disclaimer-btn.decline {
    background-color: #e53e3e;
    color: white;
}

.disclaimer-btn.decline:hover {
    background-color: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.4);
}

.disclaimer-hidden {
    display: none !important;
}

/* Hide page content when disclaimer is shown */
body.disclaimer-active {
    overflow: hidden;
}

body.disclaimer-active .navbar,
body.disclaimer-active .hero,
body.disclaimer-active main,
body.disclaimer-active footer {
    filter: blur(3px);
    pointer-events: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #374151;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.content-main {
    min-width: 0;
}

.content-sidebar {
    position: sticky;
    top: 2rem;
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #4a5568;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0f766e;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0f766e;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: #f7fafc;
    color: #0f766e;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a5568;
    cursor: pointer;
    padding: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1;
}

.btn-primary {
    background: #0f766e;
    color: white;
}

.btn-primary:hover {
    background: #134e4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0f766e;
    border: 2px solid #0f766e;
}

.btn-secondary:hover {
    background: #0f766e;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.highlight {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.hero-image svg:hover {
    transform: scale(1.02);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* About page specific header styling */
.about-page-header .header-background {
    background: none;
}

.service-header .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Sections */
.services-overview,
.about-content,
.contact-section,
.why-choose-us,
.process-section,
.faq-section {
    padding: 80px 0;
}

/* Service page sections with reduced spacing */
.service-overview {
    padding: 80px 0 40px 0;
}

.services-detail,
.technology-areas,
.design-categories,
.copyright-types,
.service-areas {
    padding: 40px 0 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card,
.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover,
.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3,
.service-detail-card h3 {
    margin-bottom: 1rem;
    color: #374151;
}

.service-card p,
.service-detail-card p {
    margin-bottom: 1.5rem;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-card li::before {
    content: '•';
    color: #0f766e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-link {
    color: #0f766e;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #134e4a;
    gap: 0.75rem;
}

/* Features and Content */
.why-choose-us {
    background: #f7fafc;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature i {
    color: #0f766e;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: #374151;
}

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

.visual-placeholder {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.visual-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

/* Sidebar */
.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.sidebar-card h3 {
    margin-bottom: 1.5rem;
    color: #374151;
}

.fact-list,
.recognition-list {
    list-style: none;
    padding: 0;
}

.fact-list li,
.recognition-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.fact-list li:last-child,
.recognition-list li:last-child {
    border-bottom: none;
}

.fact-list i {
    color: #38a169;
    font-size: 1rem;
    flex-shrink: 0;
}

.recognition-list i {
    color: #d69e2e;
    flex-shrink: 0;
}

.cta-card {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
}

.cta-card h3,
.cta-card p {
    color: white;
}

/* Values and Expertise */
.values-grid,
.expertise-list {
    display: grid;
    gap: 2rem;
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item i {
    font-size: 2.5rem;
    color: #0f766e;
    margin-bottom: 1rem;
}

.expertise-item {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    border-color: #0f766e;
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.1);
}

.expertise-item h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #374151;
}

.expertise-item i {
    color: #0f766e;
}

/* Stats */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0f766e;
}

.stat-label {
    color: #718096;
    font-size: 0.9rem;
}

/* Technology Areas and Categories */
.tech-grid,
.categories-grid,
.types-grid,
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tech-area,
.category-item,
.type-item,
.area-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-area:hover,
.category-item:hover,
.type-item:hover,
.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tech-area i,
.category-item i,
.type-item i,
.area-card i {
    font-size: 2.5rem;
    color: #0f766e;
    margin-bottom: 1rem;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: #cbd5e0;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0f766e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

/* Contact Page Header */
.contact-page-header {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

/* Service Page Headers */
.trademarks-page-header,
.patents-page-header,
.copyrights-page-header,
.industrial-design-page-header {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-page-header .container,
.trademarks-page-header .container,
.patents-page-header .container,
.copyrights-page-header .container,
.industrial-design-page-header .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 240px;
    text-align: center;
}

.contact-page-header h1,
.trademarks-page-header h1,
.patents-page-header h1,
.copyrights-page-header h1,
.industrial-design-page-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact-page-header p,
.trademarks-page-header p,
.patents-page-header p,
.copyrights-page-header p,
.industrial-design-page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f7fafc 0%, #f8fafc 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cbd5e0' fill-opacity='0.1'%3E%3Ccircle cx='7' cy='7' r='7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f766e, #14b8a6, #0d9488);
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0f766e, #14b8a6);
    border-radius: 2px;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0f766e, #14b8a6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 118, 110, 0.15);
    background: white;
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white !important;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.2);
    transition: all 0.3s ease;
}

.method-icon i {
    color: white !important;
    font-size: 1.5rem;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(15, 118, 110, 0.3);
}

.method-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2d3748 !important;
}

.method-details p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a202c !important;
}

.method-details p a {
    color: #0f766e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.method-details p a:hover {
    color: #14b8a6;
    text-decoration: underline;
}

.whatsapp-link {
    margin-left: 0.75rem;
    color: #25d366 !important;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #1ebe57 !important;
    transform: scale(1.1);
}

.method-details span {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Form */
.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-form-card h3 {
    margin-bottom: 2rem;
    color: #374151;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 8px;
    color: #22543d;
}

.form-success i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.faq-item h4 {
    color: #374151;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #cbd5e0;
}

.contact-info i {
    color: #0d9488;
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e0;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: #374151;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
/* Tablet breakpoint for services grid */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Hero section mobile layout */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image svg {
        max-width: 90%;
        height: auto;
    }
    
    /* Navigation mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f7fafc;
        margin-top: 0.5rem;
        border-radius: 6px;
    }
    
    /* Layout adjustments */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Contact section mobile responsive */
    .contact-info {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    /* Spacing adjustments */
    .services-overview,
    .about-content,
    .contact-section,
    .why-choose-us,
    .process-section {
        padding: 60px 0;
    }
    
    /* Service page sections mobile spacing */
    .service-overview {
        padding: 60px 0 30px 0;
    }
    
    .services-detail,
    .technology-areas,
    .design-categories,
    .copyright-types,
    .service-areas {
        padding: 30px 0 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    /* Card adjustments */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}

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

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

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .cta-section,
    .footer {
        display: none;
    }
    
    .page-header {
        background: none;
        color: #333;
        padding: 2rem 0;
    }
    
    .service-card,
    .sidebar-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #0f766e;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .sidebar-card,
    .contact-form-card {
        border: 2px solid #333;
    }
    
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-secondary {
        border: 2px solid #000;
        color: #000;
    }
}
/* Cache bust */
/* Force reload $(date) */
/* Cache force clear 2025-08-12 06:10 */
/* Contact icons fixed 2025-08-12 06:13 */
