/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #242424;
    background-color: #ffffff;font-size:1.2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: #949494;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo-img {
    height: 48px;
    width: auto;
}

.contact-info {
    text-align: right;
}

.call-text {
    font-size: 0.875rem;
    color: #eeee23;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: bold;
    color: #eeee23;
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: white;
    background-color: #242424;
}

/* Mobile header styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .logo {
        margin-bottom: 5px;
        text-align: center;
    }
    
    .logo-img {
        max-width: 330px;
        height: auto;
    }
    
    .contact-info {
        text-align: center;
        margin-top: 10px;
    }
    
    .call-text {
        margin: 0;
        font-size: 16px;
    }
    
    .phone-number {
        font-size: 18px;
        font-weight: bold;
        color: #eeee23;
        text-decoration: none;
    }
    
    .phone-number:hover {
        text-decoration: underline;
    }
}

/* Desktop header styles */
@media (min-width: 769px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .contact-info {
        flex: 0 0 auto;
        text-align: right;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease-in-out;
    transform: translateX(100%);
}

.hero-slide.active {
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-divider {
    width: 8rem;
    height: 4px;
    background-color: white;
    margin: 0 auto 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 600;
}

.trust-indicators-overlay {
    margin-top: 2rem;
}

.trust-badge {
    height: 10rem;
    width: auto;
    opacity: 0.9;
}

/* Trust Indicators */
.trust-indicators {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 0.6s ease-out forwards;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }
.trust-item:nth-child(5) { animation-delay: 0.5s; }

.trust-icon {
    width: 2rem;
    height: 2rem;
    background-color: #24c53d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
  
}

.trust-text {
    color: #242424;
    font-weight: 700;
}

/* Top review section */
.top-review {
    padding: 1rem 0;
    background-color: #ffffff;
}
.top-review-content {width:70%;margin:auto;text-align:center;
    font-size: 1.5rem;
}
.top-stars {
    text-align:center;
    color: #fbbf24;
}
/* Loft Boarding Section */
.loft-boarding {
    padding: 4rem 0;
    background-color: #ffffff;
}

.loft-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #242424;
    margin-bottom: 1.5rem;
}

.loft-description {
    color: #374151;
}

.loft-description p {
    margin-bottom: 1rem;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #242424;
    margin: 1.5rem 0 1rem;
}

.contact-box {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #dcfce7;
    border-radius: 0.5rem;
}

.contact-text {
    color: #242424;
    font-weight: 500;
}

.contact-link {
    color: #059669;
    font-weight: bold;
    text-decoration: none;
}

.contact-link:hover {
    color: #047857;
}

.loft-image {
    display: flex;
    justify-content: center;
}

.loft-img {
    width: 100%;
    max-width: 28rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Enquiry Form */
.enquiry-form {
    padding: 2rem 0;
    background-color: #24c53d;
}

.form-container {
    width:70%;
    max-width: 800px;
    margin: 0 auto;
    background-color: #24c53d;
    color: white;
    padding: 0;
    border-radius: 0;
}

.form-title {
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #eeee23;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;font-size:1.5rem;

}

.form-step {
    display: none;
    max-width: 28rem;
    margin: 0 auto;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    color: white;
    margin-bottom: 1rem;
}

.form-select,
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.25rem;
    border: none;
    color: #242424;
    font-size: 1rem;
}

.form-textarea {
    height: 6rem;
    resize: none;
}

.btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #fbbf24;
    color: black;
    font-size: 1.5rem;
}

.btn-primary:hover:not(:disabled) {
    background-color: #f59e0b;
    transform: scale(1.05);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: #9ca3af;
    color: white;
}

.btn-secondary:hover {
    background-color: #6b7280;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-buttons .btn {
    flex: 1;
}

/* Services */
.services {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.text-center {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #242424;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-link {
    color: #059669;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #047857;
}

/* Google Reviews */
.google-reviews {
    padding: 4rem 0;
    background-color: white;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-branding {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.google-logo {
    height: 2rem;
    margin-right: 1rem;
}

.stars {
    display: flex;
    color: #fbbf24;
}

.star {
    font-size: 1.5rem;
}

.reviews-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #242424;
}

.reviews-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1rem;
}

.reviews-carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}

.review-card {
    width: 280px;
    min-width: 280px;
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.review-stars {
    display: flex;
    color: #fbbf24;
    margin-bottom: 0.75rem;
}

.review-text {
    color: #242424;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.review-author {
    font-size: 0.875rem;
}

.reviewer-name {
    font-weight: 600;
    color: #242424;
}

.review-date {
    color: #6b7280;
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.review-nav:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.review-nav.prev {
    left: 0.5rem;
}

.review-nav.next {
    right: 0.5rem;
}

.nav-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #242424;
}

/* Footer */
.footer {
    background-color: #242424;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-text {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-text.small {
    font-size: 0.875rem;
}

.footer-subtitle {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-img {
    width: 100%;
}

.brands {
    margin-bottom: 2rem;
}

.brand-logos {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-logo {
    height: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    text-decoration: none;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.05);
}

.social-svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #242424;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #9ca3af;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .loft-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .loft-image {
        order: -1;
    }
    
    .review-card {
        width: 260px;
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        width: 240px;
        min-width: 240px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .brand-logos {
        flex-wrap: wrap;
    }

    .form-container {
        width: 90%;
        max-width: 800px;
        margin: 0 auto;
        background-color: #24c53d;
        color: white;
        padding: 0;
        
        border-radius: 0;
    }
    .top-review {
        padding: 0.5rem 0;
        
    }
    .top-review-content {width:90%;margin:auto;text-align:center;
        font-size: 1.0rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle,
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .btn-primary {
        font-size: 1.25rem;
    }
    
    .review-card {
        width: 220px;
        min-width: 220px;
    }
} 