:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --black: #1a1a1a;
    --dark-gray: #2c2c2c;
    --red: #dc3545;
    --dark-red: #c82333;
    --light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--red) !important;
    transform: scale(1.05);
}

.brand-animated i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.nav-link {
    color: var(--light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-call-nav {
    background: var(--red) !important;
    color: var(--white) !important;
    border-radius: 25px;
    font-weight: bold;
}

.btn-call-nav:hover {
    background: var(--dark-red) !important;
    transform: scale(1.05);
}

.dropdown-menu {
    background: var(--dark-gray);
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border-radius: 10px;
    margin-top: 0.5rem;
}

.dropdown-animated {
    animation: fadeInDown 0.3s ease;
}

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

.dropdown-item {
    color: var(--light);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

.dropdown-divider {
    border-color: rgba(255,255,255,0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.fade-in {
    animation: fadeIn 1s ease-out;
}

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

.hero-section h1 {
    animation: fadeInUp 0.8s ease-out;
}

.hero-section .lead {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

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

.pulse-animation {
    animation: pulseBtn 2s infinite;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}

@keyframes pulseBtn {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(220, 53, 69, 0.8);
        transform: scale(1.05);
    }
}

.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-danger {
    background: var(--red);
    border: none;
}

.btn-danger:hover {
    background: var(--dark-red);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-blue);
}

.feature-box {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-box:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--red);
    display: block;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.2) rotate(5deg);
}

.feature-box h5 {
    color: var(--white);
    margin: 1rem 0 0.5rem;
}

.feature-box p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

.hero-icon-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    font-size: 15rem;
    color: rgba(255,255,255,0.1);
    text-align: center;
}

/* Hero Image Styles */
.hero-image-container {
    position: relative;
    padding: 2rem;
}

.hero-image-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    min-height: 400px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

.hero-image-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}

.hero-badge {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.hero-badge h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-blue);
    margin: 0;
}

.hero-badge p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* About Home Section */
.about-home-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.about-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--light);
    border-radius: 50%;
    z-index: 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
}

.about-image-wrapper img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--red);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(220, 53, 69, 0.4);
    animation: pulse 2s infinite;
}

.badge-content {
    text-align: center;
    color: var(--white);
}

.badge-content h3 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}

.badge-content p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.2;
}

.about-content-home {
    position: relative;
    z-index: 1;
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
}

.about-feature-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.about-feature-item h5 {
    margin: 0 0 0.25rem 0;
    font-weight: bold;
    color: var(--dark-blue);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Section */
.services-section {
    background: var(--light);
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--red));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(220, 53, 69, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 4rem;
    color: var(--white);
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-content .btn {
    align-self: flex-start;
}

.btn-primary {
    background: var(--primary-blue);
    border: none;
}

.btn-primary:hover {
    background: var(--dark-blue);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--light);
    padding: 3rem 0 1rem;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-phone {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
}

.footer-phone a {
    color: var(--red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-phone a:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--red);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--red);
    transform: translateX(5px);
}

/* Sticky Phone Button */
.sticky-phone-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulsePhone 2s infinite;
}

@keyframes pulsePhone {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(220, 53, 69, 0.6);
        transform: scale(1.1);
    }
}

.sticky-phone-btn:hover {
    background: var(--dark-red);
    color: var(--white);
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark-gray);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .nav-link {
        margin: 0.25rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-icon {
        font-size: 8rem;
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-top: 40px;
    }
    
    .feature-box {
        padding: 1rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .sticky-phone-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Service Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--black) 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

.header-icon {
    font-size: 10rem;
    color: rgba(255,255,255,0.15);
    text-align: center;
}

.service-detail-section {
    background: var(--white);
}

.service-detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-detail-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-card h2 {
    color: var(--dark-blue);
    font-weight: bold;
}

.service-detail-card h3 {
    color: var(--dark-blue);
    font-weight: bold;
    font-size: 1.8rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--red);
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.feature-item h5 {
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}

.feature-item:hover h5,
.feature-item:hover p {
    color: var(--white);
}

.feature-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--light);
    color: var(--dark-blue);
    font-weight: bold;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--white);
    border-top: 2px solid var(--primary-blue);
}

.sidebar-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light), var(--white));
    border-radius: 10px;
}

.sidebar-cta i {
    font-size: 3rem;
    color: var(--red);
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

.sidebar-cta h4 {
    color: var(--dark-blue);
    font-weight: bold;
}

.sidebar-info,
.sidebar-hours {
    padding: 1.5rem;
    background: var(--light);
    border-radius: 10px;
}

.sidebar-info h5,
.sidebar-hours h5 {
    color: var(--dark-blue);
    font-weight: bold;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.info-list li:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.related-services {
    background: var(--light);
}

.related-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.related-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.related-card:hover i {
    color: var(--red);
    transform: scale(1.2) rotate(5deg);
}

.related-card h5 {
    color: var(--dark-blue);
    font-weight: bold;
    margin: 1rem 0 0.5rem;
}

.related-card p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-info-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover i {
    color: var(--red);
    transform: scale(1.2);
}

.contact-info-card h4 {
    color: var(--dark-blue);
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control,
.form-select {
    border: 2px solid var(--light);
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
}

/* About Page Styles */
.about-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-value-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.about-value-card:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}

.about-value-card i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.about-value-card:hover i {
    color: var(--white);
}

.about-value-card h4 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-value-card:hover h4,
.about-value-card:hover p {
    color: var(--white);
}

/* Legal Pages Styles */
.legal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-content h2 {
    color: var(--dark-blue);
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--primary-blue);
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-blue);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-blue);
    color: var(--white);
}


/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateX(-500px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.show {
    transform: translateX(0);
    opacity: 1;
}

.cookie-content {
    padding: 1.5rem;
}

.cookie-icon {
    float: left;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #003d7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    animation: bounce 2s infinite;
}

.cookie-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cookie-text {
    overflow: hidden;
}

.cookie-text h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1a1a1a;
}

.cookie-text p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.cookie-text a {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    color: #003d7a;
}

.cookie-buttons {
    clear: both;
    text-align: right;
    padding-top: 0.5rem;
}

.btn-accept {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-accept:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-accept:active {
    transform: translateY(0);
}

/* Responsive Cookie Banner - Mobil için küçültülmüş */
@media (max-width: 768px) {
    .cookie-consent {
        left: 10px;
        bottom: 10px; /* Sticky phone button için yukarı alındı */
        max-width: 280px; /* Daha dar */
    }
    
    .cookie-content {
        padding: 1rem; /* Daha az padding */
    }
    
    .cookie-icon {
        float: left; /* Sol tarafa yaslanmış kalacak */
        width: 40px; /* Küçültülmüş */
        height: 40px; /* Küçültülmüş */
        margin-right: 0.75rem;
        margin-bottom: 0;
    }
    
    .cookie-icon i {
        font-size: 1.2rem; /* Küçültülmüş */
    }
    
    .cookie-text h5 {
        font-size: 0.9rem; /* Küçültülmüş */
        margin-bottom: 0.3rem;
    }
    
    .cookie-text p {
        font-size: 0.75rem; /* Küçültülmüş */
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .cookie-buttons {
        text-align: left; /* Sola hizalanmış */
        padding-top: 0.25rem;
    }
    
    .btn-accept {
        padding: 0.5rem 1.25rem; /* Küçültülmüş */
        font-size: 0.85rem; /* Küçültülmüş */
        width: auto; /* Tam genişlik değil */
    }
}

/* Çok küçük ekranlar için (320px-480px) */
@media (max-width: 480px) {
    .cookie-consent {
        max-width: 260px; /* Daha da dar */
    }
    
    .cookie-content {
        padding: 0.85rem;
    }
    
    .cookie-icon {
        width: 35px;
        height: 35px;
    }
    
    .cookie-icon i {
        font-size: 1rem;
    }
    
    .cookie-text h5 {
        font-size: 0.85rem;
    }
    
    .cookie-text p {
        font-size: 0.7rem;
    }
    
    .btn-accept {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }
}

/* Hide cookie banner when accepted */
.cookie-consent.hide {
    transform: translateX(-500px);
    opacity: 0;
}