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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    transition: all 0.3s ease;
}

button {
    transition: all 0.3s ease;
}

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

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0a1f44;
}

.top-bar {
    background: #0a1f44;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.header-info {
    display: flex;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffa500;
    font-size: 20px;
    transition: all 0.3s ease;
}

.info-item:hover .icon-circle {
    background: rgba(255, 165, 0, 0.3);
    transform: rotate(360deg);
}

.info-text p {
    color: white;
    font-size: 14px;
    line-height: 1.4;
}

.info-text p:first-child {
    font-size: 12px;
    opacity: 0.8;
}

.info-text p:last-child {
    font-weight: 600;
}

.navbar {
    background: linear-gradient(90deg, #1e5ba8 0%, #6b4fa0 100%);
    padding: 0;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 20px 25px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu li a.active::after {
    width: 80%;
}

.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-menu li a:hover::after {
    width: 80%;
}

.nav-menu li a i {
    font-size: 10px;
    margin-left: 5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #ffa500;
    transform: translateY(-3px) scale(1.2);
}

.quote-btn {
    background: white;
    color: #1e5ba8;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #ffa500;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

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

.quote-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.quote-btn span {
    position: relative;
    z-index: 1;
}

.hero {
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.9) 0%, rgba(107, 79, 160, 0.85) 50%, rgba(255, 105, 180, 0.8) 100%),
                url('hero.webp') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 140px;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.85) 0%, rgba(30, 91, 168, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-label {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #ffa500;
    letter-spacing: 0.5px;
}

.hero-title {
    color: white;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.services-intro {
    padding-right: 40px;
}

.section-label {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 4px solid #ffa500;
    letter-spacing: 0.5px;
}

.section-title {
    color: #0a1f44;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.services-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.service-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 91, 168, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(10, 31, 68, 0.2);
    transform: translateY(-8px) scale(1.02);
    border-left: 4px solid #ffa500;
}

.service-number {
    width: 60px;
    height: 60px;
    background: #0a1f44;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-number {
    background: #ffa500;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.service-content h3 {
    color: #0a1f44;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.explore-link {
    color: #0a1f44;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #0a1f44;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0a1f44;
    transition: left 0.3s ease;
    z-index: -1;
}

.explore-link:hover::before {
    left: 0;
}

.explore-link:hover {
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(10, 31, 68, 0.3);
}

.customer-focus {
    padding: 80px 0;
    background: #f8f9fa;
}

.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.focus-content {
    padding-right: 20px;
}

.focus-title {
    color: #0a1f44;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.focus-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #ffa500;
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.feature-item:hover .feature-icon i {
    color: white;
}

.feature-icon i {
    font-size: 20px;
    color: #0a1f44;
}

.feature-item span {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.more-btn {
    background: transparent;
    color: #0a1f44;
    border: 2px solid #0a1f44;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #0a1f44;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

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

.more-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 31, 68, 0.3);
}

.more-btn span {
    position: relative;
    z-index: 1;
}

.focus-image {
    position: relative;
}

.focus-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.planning-section {
    padding: 80px 0;
    background: #e8e9f0;
}

.planning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.planning-content {
    padding-right: 20px;
}

.planning-title {
    color: #0a1f44;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.planning-description {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.planning-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.call-btn {
    background: #0a1f44;
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.call-btn:hover::before {
    left: 100%;
}

.call-btn:hover {
    background: #1e5ba8;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(10, 31, 68, 0.4);
}

.call-btn:hover i {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.call-btn i {
    font-size: 16px;
}

.contact-btn {
    background: transparent;
    color: #0a1f44;
    border: 2px solid #0a1f44;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #0a1f44;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

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

.contact-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 31, 68, 0.3);
}

.contact-btn span {
    position: relative;
    z-index: 1;
}

.planning-image {
    position: relative;
}

.planning-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-box {
    background: #0a1f44;
    padding: 40px;
    border-radius: 10px;
    color: white;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 31, 68, 0.3);
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: white;
}

.info-box-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-box-item:hover {
    transform: translateX(10px);
}

.info-box-item:last-child {
    margin-bottom: 0;
}

.info-box-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 165, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-box-item:hover .info-box-icon {
    background: #ffa500;
    transform: scale(1.1) rotate(360deg);
}

.info-box-item:hover .info-box-icon i {
    color: white;
}

.info-box-icon i {
    color: #ffa500;
    font-size: 20px;
}

.info-box-item h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-box-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group label {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #0a1f44;
    box-shadow: 0 2px 8px rgba(10, 31, 68, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a1f44;
    box-shadow: 0 0 0 3px rgba(10, 31, 68, 0.1);
    transform: translateY(-2px);
}

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

.submit-btn {
    background: #0a1f44;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: #1e5ba8;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(10, 31, 68, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.submit-btn i {
    font-size: 16px;
}

.footer {
    background: #0a1f44;
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo-image {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item i {
    color: #ffa500;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ffa500;
}

.footer-address {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-address i {
    color: #ffa500;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-address p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-links a:hover {
    color: #ffa500;
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffa500;
    transform: translateY(-5px) rotate(360deg) scale(1.2);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .header-info {
        gap: 20px;
    }
    
    .info-item {
        gap: 10px;
    }
    
    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .info-text p {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .contact-info-box,
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .top-bar {
        padding: 15px 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .header-info {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .navbar {
        padding: 0;
    }
    
    .navbar .container {
        padding: 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-content {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #1e5ba8 0%, #0a1f44 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav-content.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-bottom: 30px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .nav-right {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
    
    .social-icons {
        justify-content: center;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .quote-btn {
        width: 100%;
        padding: 15px 30px;
    }
    
    .hero {
        margin-top: 380px;
        padding: 40px 0;
        min-height: 500px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-label {
        font-size: 12px;
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid #ffa500;
        padding-bottom: 10px;
        display: inline-block;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .services {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-intro {
        padding-right: 0;
        text-align: center;
    }
    
    .section-label {
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid #ffa500;
        padding-bottom: 8px;
        display: inline-block;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .services-description {
        font-size: 14px;
    }
    
    .service-card {
        flex-direction: column;
        padding: 25px;
        text-align: center;
        align-items: center;
    }
    
    .service-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .service-content p {
        font-size: 14px;
    }
    
    .customer-focus {
        padding: 50px 0;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .focus-content {
        padding-right: 0;
        text-align: center;
    }
    
    .focus-title {
        font-size: 26px;
    }
    
    .focus-description {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .more-btn {
        width: 100%;
        padding: 15px 30px;
    }
    
    .planning-section {
        padding: 50px 0;
    }
    
    .planning-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .planning-content {
        padding-right: 0;
        text-align: center;
    }
    
    .planning-title {
        font-size: 26px;
    }
    
    .planning-description {
        font-size: 14px;
    }
    
    .planning-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .call-btn,
    .contact-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-subtitle {
        font-size: 14px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info-box {
        padding: 25px;
    }
    
    .contact-info-box h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .info-box-item {
        margin-bottom: 20px;
    }
    
    .info-box-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-box-item h4 {
        font-size: 14px;
    }
    
    .info-box-item p {
        font-size: 13px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px 30px;
        font-size: 15px;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo-image {
        height: 40px;
        margin: 0 auto 15px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .footer-address {
        justify-content: center;
        text-align: left;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        margin-top: 420px;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .services,
    .customer-focus,
    .planning-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
    
    .focus-title,
    .planning-title {
        font-size: 22px;
    }
    
    .contact-info-box,
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .info-box-icon {
        width: 40px;
        height: 40px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
    
    .call-btn,
    .contact-btn,
    .submit-btn,
    .more-btn,
    .quote-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .explore-link {
        padding: 8px 20px;
        font-size: 14px;
    }
}
