body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-top: 0;
    color: #333;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    color: #0077FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #005ED6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Dark Sections */
.dark-section {
    background-color: #111;
    color: #fff;
}

.dark-section h2, 
.dark-section h3 {
    color: #fff;
}

.dark-section .section-subtitle {
    color: #ccc;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background-color: #0077FF;
    color: #fff;
    border: 2px solid #0077FF;
}

.btn-primary:hover {
    background-color: #005ED6;
    border-color: #005ED6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 119, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #0077FF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.dark-section .btn-outline {
    color: #fff;
    border-color: #fff;
}

.dark-section .btn-outline:hover {
    background-color: #fff;
    color: #111;
}

.btn-text {
    color: #0077FF;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.btn-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0077FF;
    transition: width 0.3s ease;
}

.btn-text:hover:after {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.navbar .logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
}

.nav-links a {
    color: #fff;
    margin-left: 30px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0077FF;
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.navbar.scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Header */
.parallax-header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    width: 100%;
    max-width: 100%;
}

.kuula-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.kuula-background iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Responsive display for backgrounds */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.parallax-header .container {
    max-width: 800px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: #fff;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(44px, 450px, 56px, 0);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #0077FF;
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
        transform: skew(0.85deg);
    }
    5% {
        clip: rect(70px, 9999px, 71px, 0);
        transform: skew(0.17deg);
    }
    10% {
        clip: rect(75px, 9999px, 92px, 0);
        transform: skew(0.4deg);
    }
    15% {
        clip: rect(66px, 9999px, 91px, 0);
        transform: skew(0.29deg);
    }
    20% {
        clip: rect(41px, 9999px, 87px, 0);
        transform: skew(0.02deg);
    }
    25% {
        clip: rect(38px, 9999px, 53px, 0);
        transform: skew(0.6deg);
    }
    30% {
        clip: rect(71px, 9999px, 88px, 0);
        transform: skew(0.93deg);
    }
    35% {
        clip: rect(90px, 9999px, 98px, 0);
        transform: skew(0.93deg);
    }
    40% {
        clip: rect(41px, 9999px, 27px, 0);
        transform: skew(0.16deg);
    }
    45% {
        clip: rect(40px, 9999px, 93px, 0);
        transform: skew(0.01deg);
    }
    50% {
        clip: rect(18px, 9999px, 97px, 0);
        transform: skew(0.61deg);
    }
    55% {
        clip: rect(87px, 9999px, 22px, 0);
        transform: skew(0.83deg);
    }
    60% {
        clip: rect(10px, 9999px, 47px, 0);
        transform: skew(0.07deg);
    }
    65% {
        clip: rect(87px, 9999px, 10px, 0);
        transform: skew(0.28deg);
    }
    70% {
        clip: rect(80px, 9999px, 80px, 0);
        transform: skew(0.01deg);
    }
    75% {
        clip: rect(21px, 9999px, 35px, 0);
        transform: skew(0.93deg);
    }
    80% {
        clip: rect(69px, 9999px, 99px, 0);
        transform: skew(0.01deg);
    }
    85% {
        clip: rect(10px, 9999px, 53px, 0);
        transform: skew(0.8deg);
    }
    90% {
        clip: rect(54px, 9999px, 43px, 0);
        transform: skew(0.38deg);
    }
    95% {
        clip: rect(99px, 9999px, 34px, 0);
        transform: skew(0.07deg);
    }
    100% {
        clip: rect(75px, 9999px, 61px, 0);
        transform: skew(0.85deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
        transform: skew(0.13deg);
    }
    5% {
        clip: rect(51px, 9999px, 97px, 0);
        transform: skew(0.92deg);
    }
    10% {
        clip: rect(21px, 9999px, 94px, 0);
        transform: skew(0.75deg);
    }
    15% {
        clip: rect(79px, 9999px, 85px, 0);
        transform: skew(0.76deg);
    }
    20% {
        clip: rect(54px, 9999px, 96px, 0);
        transform: skew(0.13deg);
    }
    25% {
        clip: rect(86px, 9999px, 38px, 0);
        transform: skew(0.29deg);
    }
    30% {
        clip: rect(57px, 9999px, 34px, 0);
        transform: skew(0.29deg);
    }
    35% {
        clip: rect(19px, 9999px, 85px, 0);
        transform: skew(0.63deg);
    }
    40% {
        clip: rect(98px, 9999px, 100px, 0);
        transform: skew(0.06deg);
    }
    45% {
        clip: rect(82px, 9999px, 31px, 0);
        transform: skew(0.66deg);
    }
    50% {
        clip: rect(29px, 9999px, 43px, 0);
        transform: skew(0.07deg);
    }
    55% {
        clip: rect(99px, 9999px, 100px, 0);
        transform: skew(0.64deg);
    }
    60% {
        clip: rect(35px, 9999px, 56px, 0);
        transform: skew(0.02deg);
    }
    65% {
        clip: rect(55px, 9999px, 32px, 0);
        transform: skew(0.63deg);
    }
    70% {
        clip: rect(72px, 9999px, 99px, 0);
        transform: skew(0.95deg);
    }
    75% {
        clip: rect(66px, 9999px, 86px, 0);
        transform: skew(0.93deg);
    }
    80% {
        clip: rect(31px, 9999px, 99px, 0);
        transform: skew(0.33deg);
    }
    85% {
        clip: rect(69px, 9999px, 57px, 0);
        transform: skew(0.01deg);
    }
    90% {
        clip: rect(82px, 9999px, 33px, 0);
        transform: skew(0.01deg);
    }
    95% {
        clip: rect(81px, 9999px, 77px, 0);
        transform: skew(0.01deg);
    }
    100% {
        clip: rect(28px, 9999px, 99px, 0);
        transform: skew(0.85deg);
    }
}

@keyframes glitch-skew {
    0% {
        transform: skew(1deg);
    }
    10% {
        transform: skew(0deg);
    }
    20% {
        transform: skew(1deg);
    }
    30% {
        transform: skew(-1deg);
    }
    40% {
        transform: skew(0deg);
    }
    50% {
        transform: skew(-1deg);
    }
    60% {
        transform: skew(0deg);
    }
    70% {
        transform: skew(1deg);
    }
    80% {
        transform: skew(-1deg);
    }
    90% {
        transform: skew(0deg);
    }
    100% {
        transform: skew(-1deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.scroll-indicator span {
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 1.5s infinite;
}

@keyframes wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin: -5px;
    animation: arrows 2s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* Shape Dividers - Simplified */
.shape-divider {
    display: none;
}

.shape-divider-bottom {
    display: none;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    font-size: 3rem;
    color: #0077FF;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #ccc;
    margin-bottom: 0;
}

.service-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 119, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 15px;
}

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

.service-hover-content {
    padding: 30px;
    text-align: center;
}

.service-hover-content p {
    color: #fff;
    margin-bottom: 20px;
}

.service-hover-content .btn-text {
    color: #fff;
}

.service-hover-content .btn-text:after {
    background-color: #fff;
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 119, 255, 0.3);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0077FF;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom-left-radius: 15px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #0077FF;
    margin-bottom: 15px;
}

.pricing-header p {
    color: #ccc;
    margin-bottom: 0;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #ccc;
    position: relative;
    padding-left: 25px;
}

.pricing-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #0077FF;
    position: absolute;
    left: 0;
}

.pricing-footer {
    padding: 30px;
    text-align: center;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: #ccc;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0077FF;
    margin-bottom: 10px;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Coverage Section */
.coverage-map {
    position: relative;
    margin: 50px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coverage-map img {
    width: 100%;
    display: block;
}

.coverage-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.coverage-point {
    position: absolute;
    transform: translate(-50%, -50%);
}

.point-pulse {
    width: 20px;
    height: 20px;
    background-color: #0077FF;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.point-pulse:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0077FF;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.point-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0077FF;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coverage-point:hover .point-label {
    opacity: 1;
}

.coverage-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.input-container {
    position: relative;
}

.input-container input,
.input-container textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    color: #fff;
    background-color: transparent;
    border: none;
    outline: none;
}

.input-container label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-container.focused label {
    top: -10px;
    font-size: 0.8rem;
    color: #0077FF;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #444;
}

.input-border:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0077FF;
    transition: width 0.3s ease;
}

.input-container.focused .input-border:after {
    width: 100%;
}

.input-container.textarea {
    height: 150px;
}

.input-container textarea {
    resize: none;
    height: 100%;
}

.input-container.error .input-border:after {
    background-color: #ff3b30;
}

.input-container.error label {
    color: #ff3b30;
}

.validation-message {
    color: #ff3b30;
    font-size: 0.8rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-success-message {
    background-color: rgba(0, 119, 255, 0.1);
    border-left: 3px solid #0077FF;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.form-success-message i {
    color: #0077FF;
    font-size: 1.5rem;
    margin-right: 15px;
}

.form-success-message p {
    margin: 0;
    color: #fff;
}

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

.contact-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #0077FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    color: #fff;
}

.contact-text h4 {
    margin: 0 0 5px;
    color: #fff;
}

.contact-text p {
    margin: 0;
    color: #ccc;
}

.contact-text a {
    color: #ccc;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #0077FF;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #0077FF;
    color: #fff;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #111;
    color: #ccc;
    padding: 80px 0 30px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo p {
    margin-top: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #0077FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #0077FF;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid #0077FF;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: all 0.2s ease;
}

.cursor.cursor-hover {
    width: 20px;
    height: 20px;
    background-color: rgba(0, 119, 255, 0.5);
}

.cursor-follower.cursor-hover {
    width: 50px;
    height: 50px;
    border-color: rgba(0, 119, 255, 0.5);
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #111;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 15px 0;
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
    }
    
    .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);
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
    
    .tours-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .service-card, .pricing-card, .contact-card {
        padding: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}
