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

:root {
    --navy-blue: #2B4C7E;
    --light-blue: #5a9fd4;
    --accent-red: #E63946;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-gray: #666666;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 220px;
}

section {
    scroll-margin-top: 220px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

.navbar {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a3a5f 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(43, 76, 126, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 180px;
    width: auto;
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
}

.navbar.scrolled .logo-image {
    height: 120px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), #ff6b7a);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--light-gray);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a3a5f 50%, var(--light-blue) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 240px;
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(90, 159, 212, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0.03) 70%, transparent 70%);
    background-size: 100% 100%, 100% 100%, 100px 100px;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.stat h3 {
    font-size: 3.5rem;
    color: var(--accent-red);
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    letter-spacing: -2px;
}

.stat p {
    color: var(--light-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

.animate-in {
    animation: fadeInUp 1s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.3s; }
.animate-in:nth-child(3) { animation-delay: 0.5s; }
.hero-stats .stat:nth-child(1) { animation-delay: 0.7s; }
.hero-stats .stat:nth-child(2) { animation-delay: 0.9s; }
.hero-stats .stat:nth-child(3) { animation-delay: 1.1s; }

.btn {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #ff4757);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s;
}

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

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(230, 57, 70, 0.7), 0 0 0 10px rgba(230, 57, 70, 0.1);
    }
}

section {
    padding: 100px 0;
    position: relative;
}

.difference-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4f8 100%);
    padding: 120px 0;
}

.difference-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.difference-badge {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.difference-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--navy-blue);
    margin-bottom: 50px;
    line-height: 1.2;
}

.highlight-red {
    color: var(--accent-red);
    font-size: 5rem;
    display: inline-block;
    animation: scaleIn 0.6s ease;
}

.difference-story {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.competitor-price, .our-price {
    text-align: center;
    padding: 30px 40px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.competitor-price {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #ef5350;
    position: relative;
}

.competitor-price::after {
    content: '❌';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
}

.our-price {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #66bb6a;
    position: relative;
}

.our-price::after {
    content: '✓';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    color: #66bb6a;
}

.competitor-price .label, .our-price .label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.competitor-price .amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #d32f2f;
    text-decoration: line-through;
}

.our-price .amount {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #388e3c;
}

.savings-badge {
    background: linear-gradient(135deg, var(--accent-red), #ff4757);
    color: white;
    padding: 30px 50px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    margin: 30px 0;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.savings-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.savings-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.savings-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 10px;
}

.story-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-blue);
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.emphasis-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
    font-style: italic;
    margin-top: 30px;
}

.timeline-section {
    background: white;
}

.timeline-comparison {
    max-width: 900px;
    margin: 50px auto;
}

.timeline-track {
    margin-bottom: 60px;
}

.timeline-bar {
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.timeline-progress {
    height: 50px;
    background: linear-gradient(90deg, #ccc 0%, #999 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 15px 0;
}

.timeline-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--navy-blue), var(--light-blue));
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.timeline-progress.animated::after {
    width: 100%;
}

.timeline-progress.fast::after {
    background: linear-gradient(90deg, var(--accent-red), #ff4757);
}

.timeline-duration {
    display: inline-block;
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 1.2rem;
}

.timeline-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.timeline-stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.timeline-stat h4 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.timeline-stat p {
    color: var(--text-gray);
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy-blue);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-red), #ff4757);
    margin: 0 auto;
    border-radius: 5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 20px;
}

.services {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
}

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

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    border-top-color: var(--accent-red);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--navy-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    color: var(--accent-red);
    transform: scale(1.1) rotate(5deg);
    animation: bounce 0.6s ease;
}

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

.service-card h3 {
    color: var(--navy-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.portfolio {
    background: white;
}

.before-after-showcase {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4f8 100%);
    border-radius: 20px;
}

.showcase-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--navy-blue);
    margin-bottom: 40px;
    font-weight: 700;
}

.before-after-slider {
    max-width: 900px;
    margin: 0 auto;
}

.ba-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    cursor: ew-resize;
    user-select: none;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-image.before {
    position: relative;
}

.ba-image.after {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.ba-image svg,
.ba-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
}

.ba-image.before .ba-label {
    left: 20px;
}

.ba-image.after .ba-label {
    right: 20px;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    z-index: 10;
}

.handle-line {
    width: 4px;
    flex: 1;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.handle-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

.ba-description {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--light-gray);
}

.project-image svg,
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    padding: 35px;
}

.project-info h3 {
    color: var(--navy-blue);
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.project-cost {
    color: var(--accent-red);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.project-info p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--navy-blue), var(--light-blue));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.why-us {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.why-card {
    background: white;
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-top: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    border-top-color: var(--accent-red);
}

.why-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    color: var(--navy-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-icon {
    color: var(--accent-red);
    transform: scale(1.15) rotate(-5deg);
    animation: bounce 0.6s ease;
}

.why-card h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.licenses {
    background: white;
    padding: 80px 0;
}

.licenses-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.license-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4f8 100%);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.license-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.license-badge {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    color: var(--navy-blue);
    transition: transform 0.4s ease;
}

.license-card:hover .license-badge {
    transform: scale(1.1) rotate(5deg);
}

.license-card h3 {
    color: var(--navy-blue);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.license-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4f8 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-left-color: var(--accent-red);
}

.info-icon {
    width: 50px;
    height: 50px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    color: var(--accent-red);
    transform: scale(1.1);
}

.info-card h4 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-card a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.contact-form-container {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 4px rgba(43, 76, 126, 0.1);
}

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

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    display: none;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.map-container iframe {
    display: block;
}

.footer {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a2f4f 100%);
    color: white;
    padding: 70px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section h3 {
    font-size: 1.6rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-top: 10px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}

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

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.scroll-fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .difference-title {
        font-size: 3rem;
    }
    
    .highlight-red {
        font-size: 3.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--navy-blue) 0%, #1a3a5f 100%);
        width: 100%;
        text-align: center;
        transition: left 0.4s ease;
        padding: 40px 0;
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat h3 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .difference-title {
        font-size: 2.2rem;
    }
    
    .highlight-red {
        font-size: 2.8rem;
    }
    
    .difference-story {
        padding: 35px 25px;
    }
    
    .price-comparison {
        gap: 25px;
    }
    
    .before-after-showcase {
        padding: 30px 20px;
    }
    
    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat h3 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .difference-title {
        font-size: 1.8rem;
    }
    
    .highlight-red {
        font-size: 2.2rem;
    }
    
    .savings-amount {
        font-size: 2.5rem;
    }
}
