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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-size: 16px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(3, 26, 56, 0.95) 0%, rgba(3, 26, 56, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: navbarEntrance 0.8s ease-out;
}

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

/* Navbar hide/show animations */
.navbar {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.navbar.navbar-visible {
    transform: translateY(0);
}

/* Enhanced scroll effect */
.navbar.scrolled {
    background: linear-gradient(135deg, rgba(3, 26, 56, 0.98) 0%, rgba(3, 26, 56, 0.98) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-left: -10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.3s ease;
    margin-right: -10px;
}

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

.logo-image {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}









.navbar.scrolled .nav-menu {
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #4a90e2;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #031A38);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

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

.navbar.scrolled .nav-link {
    font-size: 0.9rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .nav-btn {
    padding: 0.5rem 1.6rem;
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../Maranthi Banner.png') center center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    margin: 0 70px;
    padding: 0 20px;
    color: white;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-text {
    max-width: 800px;
    animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Quicksand', sans-serif;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    font-size: 70px;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}

.btn-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    margin-right: 1.5rem;
}

.btn-primary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    transform: translateX(5px);
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: translateX(3px);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Quicksand', sans-serif;
}

.section-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-family: 'Quicksand', sans-serif;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    border-radius: 8px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(40px);
}

.feature.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #333;
    font-family: 'Quicksand', sans-serif;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Quicksand', sans-serif;
}

.about-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.services-title h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.2;
    margin: 0;
}

.services-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Quicksand', sans-serif;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 0;
    text-align: left;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    margin-bottom: 1.5rem;
}

.service-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.service-photo:hover {
    transform: scale(1.02);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 0.8rem 1.5rem;
    color: #333;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Quicksand', sans-serif;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

/* CTA Section */
.cta {
    background: white;
}

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

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Quicksand', sans-serif;
}

.cta-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Quicksand', sans-serif;
}

/* Contact Section */
.contact {
    background: white;
    color: #333;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Contact Form Section */
.contact-form-section {
    padding: 2rem 0;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    color: #333;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    padding: 1rem 0;
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-family: 'Quicksand', sans-serif;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-group select:focus {
    color: #333;
}

.form-group select option {
    color: #333;
    background: white;
    font-family: 'Quicksand', sans-serif;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    transition: all 0.3s ease;
}

.form-group input:focus + .input-line,
.form-group textarea:focus + .input-line,
.form-group select:focus + .input-line {
    background: #031A38;
    height: 2px;
}

/* Submit Button */
.submit-btn {
    background: #031A38;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #052a4a;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(3, 26, 56, 0.3);
}

/* Contact Info Section */
.contact-info-section {
    padding: 2rem 0;
}

.contact-heading {
    position: relative;
    margin-bottom: 2rem;
}

.glitch-text {
    font-size: 2.25rem;
    font-weight: 400;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.2;
    margin: 0;
    color: #333;
}

.glitch-line {
    display: block;
    position: relative;
    color: #333;
}

.glitch-line:nth-child(2) {
    margin-top: 0.3rem;
}

.heading-decoration {
    position: absolute;
    top: 50%;
    right: -15px;
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    transform: translateY(-50%);
}

.contact-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-family: 'Quicksand', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #4a90e2;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #031A38;
    color: white;
    transform: scale(1.05);
}

.fas fa-envelope{
    color: #031A38;
}

.fas fa-phone{
    color: #031A38;
}

.fas fa-map-marker-alt{
    color: #031A38;
}   

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Quicksand', sans-serif;
}

.contact-text a,
.contact-text span {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Quicksand', sans-serif;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #4a90e2;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #031A38 0%, #031A38 100%);
    color: white;
    padding: 2rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

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

.footer-logo-image {
    height: 60px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 1.5rem 0;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: #4a90e2;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #4a90e2;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        margin: 0;
        padding: 0 20px;
        text-align: left;
        justify-content: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(3, 26, 56, 0.98) 0%, rgba(3, 26, 56, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 6rem 2rem 2rem;
        justify-content: center;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-btn {
        margin-top: 1rem;
        width: 200px;
        align-self: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .about-content,
    .cta-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        gap: 1rem;
        padding: 0.75rem 0;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-text a,
    .contact-text span {
        font-size: 0.9rem;
    }
    
    .services-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .glitch-text {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px;
        min-height: 90vh;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .hero-buttons {
        max-width: 280px;
        gap: 0.75rem;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .btn-secondary {
        font-size: 0.9rem;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .contact-item {
        gap: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .contact-text a,
    .contact-text span {
        font-size: 0.85rem;
    }
    
    .glitch-text {
        font-size: 1.5rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
}
