/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #374151;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1e40af;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-nav {
    background: #1e40af;
    padding: 1rem 0;
    border-bottom: 1px solid #1d4ed8;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-content .logo {
    position: absolute;
    left: 0;
    z-index: 10;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 3rem;
    width: auto;
}

.nav-content .mobile-menu-btn {
    position: absolute;
    right: 0;
    z-index: 10;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 3rem;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links.desktop-nav {
    flex: 1;
    justify-content: center;
    max-width: none;
}

.nav-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: #D97706 !important;
    border-bottom-color: #FBBF24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 0.25rem 0.25rem 0 0;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #F59E0B !important;
    border-bottom-color: #FBBF24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.15));
    border-radius: 0.25rem 0.25rem 0 0;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #1e40af;
    border-top: 1px solid #1d4ed8;
    padding: 1rem 0;
}

.mobile-nav-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    display: block;
}

.mobile-nav-link:hover {
    color: #D97706 !important;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border-left-color: #FBBF24;
    transform: translateX(4px);
}

.mobile-nav-link.active {
    color: #F59E0B !important;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.15));
    border-left-color: #FBBF24;
    font-weight: 600;
}

.top-bar {
    background: linear-gradient(to right, #FBBF24, #FDE047);
    padding: 1rem 0;
}

.top-bar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.welcome-text {
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.welcome-line {
    text-align: center;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.contact-separator {
    color: #374151;
    font-weight: 500;
}

.social-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.follow-text {
    font-weight: 500;
    color: #374151;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.contact-item i {
    width: 1rem;
    height: 1rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background-color: #1d4ed8;
}

.social-icon.tiktok,
.social-icon.twitter {
    background-color: #374151;
}

.social-icon:hover {
    opacity: 0.8;
}

.main-nav {
    padding: 0.75rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    background: #1d4ed8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    background: #1e40af;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #1d4ed8;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mobile-nav-link {
    background: #1d4ed8;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #1e40af;
}

.mobile-nav.show {
    display: flex;
}

/* Hero Section */
.hero-slider-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 8rem;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 50rem;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.hero-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: #FBBF24;
    border-color: #FBBF24;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.hero-nav:hover {
    background: rgba(251, 191, 36, 0.8);
    border-color: #FBBF24;
}

.hero-prev {
    left: 2rem;
}

.hero-next {
    right: 2rem;
}

.hero-nav i {
    width: 1.5rem;
    height: 1.5rem;
}

.page-hero {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    padding: 8rem 0 4rem;
    margin-top: 8rem;
    position: relative;
}

.page-hero-content {
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-btn {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    color: #374151;
    font-weight: bold;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background: linear-gradient(to right, #F59E0B, #D97706);
    transform: scale(1.05);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.hero-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #FBBF24;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.hero-nav:hover {
    background: rgba(0, 0, 0, 0.5);
}

.hero-prev {
    left: 1rem;
}

.hero-next {
    right: 1rem;
}

.hero-nav i {
    width: 1.5rem;
    height: 1.5rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    max-width: 64rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    background: #f9fafb;
}

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

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    width: 2rem;
    height: 2rem;
    color: #F59E0B;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.welcome-content {
    max-width: 64rem;
    margin: 0 auto;
}

.content-card {
    background: white;
    border-radius: 0.5rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.content-card p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.highlight-box {
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.yellow-highlight {
    background: linear-gradient(to right, #fef3c7, #fef9e7);
    border-color: #FBBF24;
}

.blue-highlight {
    background: linear-gradient(to right, #dbeafe, #f0f9ff);
    border-color: #1d4ed8;
}

.highlight-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: white;
}

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

.service-card {
    display: flex;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: white;
}

.service-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-content {
    flex: 2;
    padding: 2rem;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon i {
    width: 3rem;
    height: 3rem;
    color: #F59E0B;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #D97706;
}

.service-description {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #F59E0B;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.service-btn {
    background: #1d4ed8;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #1e40af;
}

.service-image {
    flex: 1;
    min-height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-section {
    margin-top: 4rem;
}

.pricing-card {
    background: linear-gradient(to right, #fef3c7, #dbeafe);
    border: 2px solid #FBBF24;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 1rem;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto 1.5rem;
}

.pricing-option {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FBBF24;
}

.pricing-option h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.pricing-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #dbeafe, #fef3c7, #dbeafe);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-card-header i {
    width: 1.25rem;
    height: 1.25rem;
    color: #F59E0B;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: #1e40af;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.form-card > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FBBF24;
}

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

.form-submit-btn {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    color: white;
    padding: 0.75rem;
    border-radius: 0.375rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-submit-btn:hover {
    background: linear-gradient(to right, #1e40af, #1e3a8a);
}

.form-submit-btn i {
    width: 1.25rem;
    height: 1.25rem;
}

.form-notice {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(to right, #fef3c7, #fef9e7);
    border: 2px solid #FBBF24;
    border-radius: 0.375rem;
}

.form-notice p {
    font-size: 0.875rem;
    color: #92400e;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #1e40af, #1e3a8a, #1e40af);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-main {
    display: flex;
    flex-direction: column;
}

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

.footer-brand img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: #FBBF24;
}

.footer-links h4,
.footer-policies h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FBBF24;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-policies ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-policies a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-policies a:hover {
    color: #FBBF24;
}

.footer-bottom {
    background: linear-gradient(to right, #1e3a8a, #1e40af);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-powered {
    margin-top: 0.25rem;
}

.footer-powered span {
    color: #FBBF24;
}

.footer-social-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.back-to-top {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    color: #374151;
    border: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: linear-gradient(to right, #F59E0B, #D97706);
}

.back-to-top i {
    width: 1rem;
    height: 1rem;
}

/* Gallery Styles */
.gallery-intro {
    padding: 4rem 0 2rem;
    background: #f8fafc;
}

.gallery-category-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.gallery-category-section:nth-child(even) {
    background: #f9fafb;
}

.gallery-category-section:nth-child(odd) {
    background: white;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.category-header h2 {
    font-size: 2.25rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.category-header .category-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    width: 100%;
}

.overlay-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.category-badge {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.filter-btn {
    background: white;
    color: #1e40af;
    padding: 0.75rem 1.5rem;
    border: 2px solid #1e40af;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    color: #374151;
    border-color: #FBBF24;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(251, 191, 36, 0.8);
}

.lightbox-prev {
    left: -4rem;
}

.lightbox-next {
    right: -4rem;
}

.lightbox-info {
    position: absolute;
    bottom: -4rem;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    opacity: 0.8;
}

/* Footer Styles */
.footer {
    background: #1e40af;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-main {
    max-width: 100%;
}

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

.footer-brand img {
    height: 2.5rem;
    width: auto;
}

.footer-brand h3 {
    font-size: 1.25rem;
    color: white;
    margin: 0;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
}

.footer-contact-item i {
    width: 1rem;
    height: 1rem;
    color: #FBBF24;
    flex-shrink: 0;
}

.footer-links,
.footer-policies {
    display: flex;
    flex-direction: column;
}

.footer-links h4,
.footer-policies h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul,
.footer-policies ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-policies a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    line-height: 1.4;
}

.footer-links a:hover,
.footer-policies a:hover {
    color: #FBBF24;
}

.footer-bottom {
    border-top: 1px solid #1d4ed8;
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.4;
}

.footer-powered {
    color: #6b7280;
}

.footer-powered span {
    color: #FBBF24;
    font-weight: 500;
}

.footer-social-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.back-to-top {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    color: #374151;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(251, 191, 36, 0.3);
}

.back-to-top i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Gallery CTA Styles */
.gallery-cta {
    padding: 4rem 0;
    background: #1e40af;
}

.cta-card {
    text-align: center;
    color: white;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.cta-btn {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.cta-btn.primary {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    color: #374151;
}

.cta-btn.primary:hover {
    background: linear-gradient(to right, #F59E0B, #D97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.cta-btn.secondary {
    background: white;
    color: #1e40af;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

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

    .footer-contact {
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: none;
    }

    .mobile-nav.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-nav {
        width: 2.5rem;
        height: 2.5rem;
    }

    .hero-prev {
        left: 1rem;
    }

    .hero-next {
        right: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .category-header h2 {
        font-size: 1.875rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-social-actions {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .top-bar {
        padding: 0.75rem 0;
    }
    
    .top-bar-content {
        gap: 0.25rem;
        font-size: 0.75rem;
    }
    
    .contact-line {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .contact-separator {
        display: none;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
    
    .hero-nav {
        display: none;
    }
}