/* Custom Fonts */
@font-face {
    font-family: 'Maven Pro';
    src: url('font/mavenpro-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maven Pro';
    src: url('font/mavenpro-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maven Pro';
    src: url('font/mavenpro-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Maven Pro', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Screen Reader Only Class for SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.header-bottom {
    /* background: rgba(255, 255, 255, 0.95); */
    padding: 0.35rem 0 0.7rem 0;
}

.nav-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 7rem;
    margin: 0;
    padding: 0.35rem 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: 'Maven Pro', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #c2975a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c2975a;
    transition: width 0.3s ease;
}

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

.nav-brand .logo {
    display: flex;
    align-items: center;
    margin-left: 3rem;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.enquiry-button {
    background: #c2975a;
    color: white;
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Maven Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 3rem;
}

.enquiry-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 151, 90, 0.4);
    background: #b08650;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #c2975a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 120px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slider slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slider controls */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    z-index: 3;
    border-radius: 6px;
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 8px;
}

/* Hero Text Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.rera-text-top {
    position: absolute;
    top: 30px;
    left: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Maven Pro', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.hero-text-container {
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 100%;
    padding: 60px 80px;
}

.main-hero-text {
    color: white;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'Maven Pro', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Project USPs */
.project-usps {
    padding: 80px 0;
    background: #f8f8f8;
}

.project-usps h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #c2975a;
    margin-bottom: 4rem;
    font-weight: 500;
    font-family: 'Maven Pro', sans-serif;
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 2rem 0 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-right: 3px solid #c2975a;
    position: relative;
}

.usp-item:nth-child(3n) {
    border-right: none;
}

.usp-item:hover {
    transform: none;
    box-shadow: none;
}

.usp-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.usp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.usp-text h3 {
    color: #8b6f3f;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    font-family: 'Maven Pro', sans-serif;
}

/* Interior Gallery Section */
.interior-gallery {
    padding: 80px 0;
    background: #f8f8f8;
}

.interior-gallery h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #c2975a;
    margin-bottom: 4rem;
    font-weight: 500;
    font-family: 'Maven Pro', sans-serif;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.gallery-main-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.main-gallery-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    width: 50px;
    height: 14px;
    border-radius: 7px;
    background: #d4d4d4;
    position: relative;
    overflow: hidden;
}

.dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #c2975a;
    border-radius: 7px;
    animation: progressLine 8s linear infinite;
}

.dot:hover {
    background: #c2975a;
    transform: scale(1.1);
}

@keyframes progressLine {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Amenities Gallery Section */
.amenities-gallery {
    padding: 80px 0;
    background: #f8f8f8;
}

.amenities-gallery h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #c2975a;
    margin-bottom: 4rem;
    font-weight: 500;
    font-family: 'Maven Pro', sans-serif;
}

.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.amenities-main-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.main-amenities-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.amenities-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
}

.amenity-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.amenity-dot.active {
    width: 50px;
    height: 14px;
    border-radius: 7px;
    background: #d4d4d4;
    position: relative;
    overflow: hidden;
}

.amenity-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #c2975a;
    border-radius: 7px;
    animation: amenityProgressLine 5s linear infinite;
}

.amenity-dot:hover {
    background: #c2975a;
    transform: scale(1.1);
}

@keyframes amenityProgressLine {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Old Amenities Section (keeping for reference) */
.amenities {
    padding: 80px 0;
    background: #fff;
}

.amenities h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #c2975a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.amenity-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.amenity-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: end;
}

.amenity-image.gym {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.amenity-image.pool {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.amenity-image.club {
    background: linear-gradient(135deg, #A8E6CF, #7FCDCD);
}

.amenity-image.garden {
    background: linear-gradient(135deg, #90EE90, #32CD32);
}

.amenity-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
    width: 100%;
}

.amenity-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.amenity-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Floor Plans */
.floor-plans {
    padding: 80px 0;
    background: #f8f8f8;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.plan-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.plan-card h2 {
    color: #c2975a;
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Maven Pro', sans-serif;
    line-height: 1.1;
}

.plan-type {
    font-weight: 500;
    font-size: 1.6rem;
}

.plan-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.plan-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    background: #fff;
    filter: blur(2px);
}

.plan-btn {
    background: #c2975a;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Maven Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-btn:hover {
    transform: translateY(-2px);
    background: #b08650;
}

/* Location Image Section */
.location-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.location-image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.location-full-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: #fff;
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #c2975a;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.map-container {
    position: relative;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8ff);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.map-markers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.marker:hover {
    transform: scale(1.1);
}

.marker i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.marker span {
    font-size: 0.8rem;
    font-weight: 600;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.marker.titania {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #c2975a;
}

.marker.hospital {
    top: 30%;
    left: 70%;
    color: #e74c3c;
}

.marker.school {
    top: 20%;
    left: 30%;
    color: #f39c12;
}

.marker.mall {
    top: 70%;
    left: 20%;
    color: #9b59b6;
}

.marker.airport {
    top: 60%;
    left: 80%;
    color: #2ecc71;
}

.compass {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #c2975a;
    opacity: 0.7;
}

.location-info h3 {
    color: #c2975a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.location-info ul {
    list-style: none;
}

.location-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.location-info li i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1rem;
}

/* Brochure Section */
.brochure {
    padding: 80px 0;
    background: linear-gradient(135deg, #c2975a, #c2975a);
    color: white;
}

.brochure-content {
    text-align: center;
}

.brochure h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.brochure-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.download-btn {
    grid-column: 1 / -1;
    background: white;
    color: #c2975a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.download-btn:hover {
    transform: translateY(-2px);
}

/* Legacy Section */
.legacy {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    position: relative;
    overflow: hidden;
}

.legacy::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.legacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.legacy-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.legacy-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.legacy-btn {
    background: linear-gradient(135deg, #c2975a, #c2975a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.legacy-btn:hover {
    transform: translateY(-2px);
}

.city-skyline {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 300px;
    gap: 1rem;
}

.building-silhouette {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 5px 5px 0 0;
    position: relative;
}

.building-silhouette:nth-child(1) {
    width: 60px;
    height: 180px;
}

.building-silhouette:nth-child(2) {
    width: 80px;
    height: 250px;
}

.building-silhouette:nth-child(3) {
    width: 50px;
    height: 150px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #c2975a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.office-details p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.office-details i {
    color: #c2975a;
    margin-right: 1rem;
    width: 20px;
}

.office-hours {
    margin-top: 2rem;
}

.office-hours h3 {
    color: #c2975a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-form h3 {
    color: #c2975a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c2975a;
}

.contact-form button {
    background: linear-gradient(135deg, #c2975a, #c2975a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* Main Footer */
.main-footer {
    background: white;
    padding-bottom: 0px !important;
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 500px;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: url('images/footer-img.png') no-repeat right center;
    background-size: contain;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 3;
    max-width: 50%;
}

.footer-left {
    padding-right: 2rem;
}

.footer-heading {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: 'Maven Pro', sans-serif;
}

.phone-numbers {
    margin-bottom: 2rem;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c2975a;
    margin-bottom: 0;
    line-height: 1.1;
    font-family: 'Maven Pro', sans-serif;
}

/* Phone number row elements */
.phone-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c2975a;
    text-decoration: none;
    line-height: 1.1;
    font-family: 'Maven Pro', sans-serif;
}

.phone-text:hover {
    color: #a67b38;
}

.phone-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #c2975a;
    background: #fff;
    color: #c2975a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn i {
    font-size: 1rem;
}

.icon-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background: #b08650;
    color: #fff;
    border-color: #b08650;
}

.icon-btn.call {
    color: #c2975a;
    border-color: #c2975a;
}

.icon-btn.call:hover {
    color: #fff;
}

.icon-btn.whatsapp {
    color: #c2975a;
    border-color: #c2975a;
}

.icon-btn.whatsapp:hover {
    color: #fff;
}

/* Responsive tweaks for phone number row */
@media (max-width: 768px) {
    .phone-text {
        font-size: 1.6rem;
    }
    .icon-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .phone-text {
        font-size: 1.4rem;
    }
    .icon-btn {
        width: 34px;
        height: 34px;
    }
}

/* Click-to-call link styling */
.phone-link {
    color: #c2975a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.phone-link i {
    font-size: 1.1em;
}
.phone-link:hover {
    color: #a67b38;
}

/* WhatsApp icon link styling */
.whatsapp-link {
    color: #25D366;
    margin-left: 12px;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
}
.whatsapp-link:hover {
    color: #1ebe57;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.contact-item strong {
    color: #333;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    background: transparent;
    border: 1px solid #ddd;
}

.social-icon.facebook {
    background: transparent;
}

.social-icon.instagram {
    background: transparent;
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: #c2975a;
    color: #c2975a;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-btn {
    background: #b3c0c3 !important;
    color: #f5f5f5 !important;
    border: none;
    padding: 12px 24px;
    border-radius: 6px !important;
    font-weight: 300;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Maven Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

.contact-btn:hover {
    background: #9ca8ab !important;
    transform: translateY(-2px);
}

.quote-btn {
    background: #c2975a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Maven Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-btn:hover {
    background: #b08650;
    transform: translateY(-2px);
}

.rera-number {
    font-size: 1rem;
    color: #c2975a;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #ccc;
}

.copyright {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #c2975a;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(194, 151, 90, 0.3);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top:hover {
    background: #b08650;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(194, 151, 90, 0.4);
}

.scroll-to-top::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid white;
    display: block;
}

.scroll-to-top i {
    display: none;
}

/* Legacy Footer (keeping for reference) */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-brand h3 {
    color: #c2975a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer-brand span {
    color: #c2975a;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: #c2975a;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #c2975a;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: #c2975a;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #c2975a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: #c2975a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* Form Section Styles */
.form-section {
    padding: 80px 0;
    background: #fff;
}

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

.form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.form-container input {
    width: 100%;
    flex: 1;
    border-bottom: 3px solid #c2975a !important;
    color: #333;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    /* padding: 15px 0; */
    display: block;
    outline: none;
    border: none;
    height: auto;
    margin-bottom: 1px;
}

.form-container input:focus {
    border-bottom-color: #c2975a !important;
    box-shadow: 0 2px 0 #c2975a;
}

.form-container input::placeholder {
    color: #c2975a;
    opacity: 0.7;
}

.download-btn {
    background: #c2975a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Maven Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.download-btn:hover {
    background: #b08650;
    transform: translateY(-2px);
}

/* Form Message Styles */
.form-message {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

/* Loading State */
.download-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-heading {
    text-align: center;
    font-size: 2.8rem;
    color: #c2975a;
    margin-bottom: 4rem;
    font-weight: 500;
    font-family: 'Maven Pro', sans-serif;
}

.form-heading strong {
    color: #c2975a;
    font-weight: 700;
}

/* Location Image Section */
.location-image-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.know-more-btn {
    position: absolute;
    bottom: 70px;
    left: 30px;
    background: #c2975a;
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Maven Pro', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.know-more-btn:hover {
    background: #a0824a;
    transform: translateY(-2px);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    /* margin-right: 3rem; */
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #c2975a;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 2rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-menu li {
    margin-bottom: 1.5rem;
}

.mobile-nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: 'Maven Pro', sans-serif;
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #c2975a;
}

.mobile-enquiry {
    background: #c2975a !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: 10px !important;
    display: inline-block !important;
}

/* Mobile Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    .usp-item:hover,
    .plan-card:hover,
    .amenity-card:hover {
        transform: none;
    }
    
    .enquiry-button:hover,
    .plan-btn:hover,
    .download-btn:hover,
    .contact-btn:hover,
    .quote-btn:hover,
    .know-more-btn:hover {
        transform: none;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 3rem;
    }
    
    .nav-menu-container {
        padding: 0 3rem;
    }
    
    .nav-brand .logo {
        margin-left: 1rem;
    }
    
    .enquiry-button {
        margin-right: 1rem;
    }
}

@media (max-width: 768px) {
    /* Slider Dots Mobile Enhancement */
    .dot,
    .amenity-dot {
        width: 18px;
        height: 18px;
        margin: 8px;
        position: relative;
    }
    
    .dot::before,
    .amenity-dot::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: transparent;
        border-radius: 50%;
    }
    
    .dot.active,
    .amenity-dot.active {
        width: 60px;
        height: 18px;
    }
    
    .gallery-dots,
    .amenities-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 10px 0;
    }

    /* Header Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-bottom {
        display: none;
    }
    
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .nav-brand .logo {
        margin-left: 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .enquiry-button {
        display: none;
    }
    
    /* Hero Section Mobile */
    .hero {
        margin-top: 80px;
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-image {
        object-position: center;
    }
    
    /* Hero Text Overlay Mobile */
    .rera-text-top {
        top: 20px;
        left: 20px;
        font-size: 0.9rem;
        line-height: 1.1;
    }
    
    .hero-text-container {
        bottom: 60px;
        padding: 30px 40px;
    }
    
    .main-hero-text {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    /* Project USPs Mobile */
    .project-usps {
        padding: 60px 0;
    }
    
    .project-usps h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .usps-grid {
        grid-template-columns: 1fr;
        gap: 2rem 1rem;
        padding: 0 1.5rem;
    }
    
    .usp-item {
        border-right: none;
        border-bottom: 2px solid #c2975a;
        padding: 0 0 1.5rem 0;
        margin-bottom: 1rem;
    }
    
    .usp-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .usp-text h3 {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    /* Interior Gallery Mobile */
    .interior-gallery {
        padding: 60px 0;
    }
    
    .interior-gallery h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .gallery-container {
        padding: 0 1.5rem;
    }
    
    .main-gallery-img {
        height: 300px;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .gallery-main-image {
        position: relative;
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }
    
    .gallery-main-image {
        --show-indicators: 0;
    }
    
    .gallery-main-image::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 20px;
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-right: 15px solid rgba(194, 151, 90, 0.7);
        transform: translateY(-50%);
        opacity: var(--show-indicators, 0);
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .gallery-main-image::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 15px solid rgba(194, 151, 90, 0.7);
        transform: translateY(-50%);
        opacity: var(--show-indicators, 0);
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    /* Amenities Mobile */
    .amenities-gallery {
        padding: 60px 0;
    }
    
    .amenities-gallery h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .amenities-container {
        padding: 0 1.5rem;
    }
    
    .main-amenities-img {
        height: 300px;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .amenities-main-image {
        position: relative;
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }
    
    .amenities-main-image {
        --show-indicators: 0;
    }
    
    .amenities-main-image::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 20px;
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-right: 15px solid rgba(194, 151, 90, 0.7);
        transform: translateY(-50%);
        opacity: var(--show-indicators, 0);
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .amenities-main-image::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 15px solid rgba(194, 151, 90, 0.7);
        transform: translateY(-50%);
        opacity: var(--show-indicators, 0);
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    /* Floor Plans Mobile */
    .floor-plans {
        padding: 60px 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .plan-card {
        padding: 2rem 1.5rem;
    }
    
    .plan-img {
        height: 250px;
    }
    
    /* Form Section Mobile */
    .form-section {
        padding: 60px 0;
    }
    
    .form-heading {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .form-container {
        padding: 0 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Location Image Mobile */
    .know-more-btn {
        bottom: 30px;
        left: 20px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    /* Footer Mobile */
    .main-footer {
        padding: 60px 20px;
    }
    
    .main-footer::before {
        display: none;
    }
    
    .footer-wrapper {
        padding: 0;
        min-height: auto;
    }
    
    .footer-content {
        max-width: 100%;
    }
    
    .footer-left {
        padding-right: 0;
    }
    
    .footer-heading {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .phone-number {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-details {
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-btn,
    .quote-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    
    .rera-number {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    /* Header Extra Small Mobile */
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .mobile-nav-menu {
        top: 70px;
        padding: 1.5rem 0;
    }
    
    /* Hero Section Extra Small */
    .hero {
        margin-top: 70px;
        height: 50vh;
        min-height: 350px;
    }
    
    /* Hero Text Overlay Extra Small */
    .rera-text-top {
        top: 15px;
        left: 15px;
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .hero-text-container {
        bottom: 40px;
        padding: 20px 25px;
    }
    
    .main-hero-text {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    /* Project USPs Extra Small */
    .project-usps {
        padding: 50px 0;
    }
    
    .project-usps h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .usps-grid {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .usp-text h3 {
        font-size: 1rem;
    }
    
    /* Gallery Extra Small */
    .interior-gallery,
    .amenities-gallery {
        padding: 50px 0;
    }
    
    .interior-gallery h2,
    .amenities-gallery h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .gallery-container,
    .amenities-container {
        padding: 0 1rem;
    }
    
    .main-gallery-img,
    .main-amenities-img {
        height: 100%;
        /* height: 250px; */
    }
    
    /* Enhanced Mobile Slider Dots */
    .dot,
    .amenity-dot {
        width: 20px;
        height: 20px;
        margin: 10px;
    }
    
    .dot.active,
    .amenity-dot.active {
        width: 65px;
        height: 20px;
    }
    
    .gallery-dots,
    .amenities-dots {
        padding: 15px 0;
        gap: 0.3rem;
    }
    
    /* Floor Plans Extra Small */
    .floor-plans {
        padding: 50px 0;
    }
    
    .plans-grid {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 1.5rem 1rem;
    }
    
    .plan-card h2 {
        font-size: 1.2rem;
    }
    
    .plan-type {
        font-size: 1.4rem;
    }
    
    .plan-img {
        height: 200px;
    }
    
    /* Form Section Extra Small */
    .form-section {
        padding: 50px 0;
    }
    
    .form-heading {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .form-container {
        padding: 0 1rem;
    }
    
    .form-row {
        gap: 1rem;
    }
    
    .form-container input {
        font-size: 1rem;
        padding: 12px 0;
    }
    
    /* Location Image Extra Small */
    .know-more-btn {
        bottom: 20px;
        left: 15px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    /* Footer Extra Small */
    .main-footer {
        padding: 50px 15px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .phone-number {
        font-size: 1.4rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
        margin-bottom: 0.7rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .contact-btn,
    .quote-btn {
        padding: 12px 18px;
        font-size: 0.8rem;
    }
    
    .rera-number {
        font-size: 0.85rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
    
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top::before {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 10px solid white;
    }
}

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

.usp-item,
.gallery-item,
.amenity-card,
.plan-card {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.interactive-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* OTP Modal Styles */
.otp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.otp-modal {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

.otp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 15px;
    border-bottom: 2px solid #f0f0f0;
}

.otp-modal-header h3 {
    color: #1871b9;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.otp-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.otp-modal-close:hover {
    background: #f5f5f5;
    color: #666;
}

.otp-modal-body {
    padding: 25px 30px;
}

.otp-modal-body p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: center;
}

.otp-input-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.otp-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.otp-input {
    width: 45px;
    height: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
}

.otp-input:focus {
    border-color: #1871b9;
    background: white;
    box-shadow: 0 0 0 3px rgba(24, 113, 185, 0.1);
}

.otp-input.filled {
    border-color: #1871b9;
    background: white;
}

.otp-timer {
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #666;
}

#otp-countdown {
    color: #e74c3c;
    font-weight: 600;
}

.otp-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.otp-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
}

.otp-verify-btn {
    background: linear-gradient(135deg, #1871b9, #d4af37);
    color: white;
    box-shadow: 0 4px 15px rgba(24, 113, 185, 0.3);
}

.otp-verify-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 113, 185, 0.4);
}

.otp-resend-btn {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e0e0e0;
}

.otp-resend-btn:not(:disabled):hover {
    background: #1871b9;
    color: white;
    border-color: #1871b9;
}

.otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.otp-btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.otp-error-message {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.otp-error-message.error {
    background: #fee;
    color: #e74c3c;
    border: 1px solid #f8d7da;
}

.otp-error-message.success {
    background: #efe;
    color: #27ae60;
    border: 1px solid #d4edda;
}

/* OTP Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .otp-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .otp-modal-header {
        padding: 20px 20px 10px;
    }

    .otp-modal-body {
        padding: 20px;
    }

    .otp-modal-header h3 {
        font-size: 1.2rem;
    }

    .otp-input {
        width: 40px;
        height: 45px;
        font-size: 1.3rem;
    }

    .otp-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 120px;
    }
}
