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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 160px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
    z-index: 0;
}

.hero-tagline {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.3;
    max-width: 1000px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 800px;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border: 2px solid white;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f8f9fa;
    scroll-margin-top: 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.about-image {
    height: 500px;
    background: url('../images/about-section.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Attractions Section */
.attractions {
    padding: 60px 0 40px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.attraction-card {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #2c3e50;
    cursor: pointer;
    position: relative;
}

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

.attraction-card.active {
    background: #2c3e50;
    color: white;
}

.attraction-card.active h3,
.attraction-card.active .attraction-locations,
.attraction-card.active .best-time {
    color: white;
}

.expand-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.attraction-card.active .expand-icon {
    transform: rotate(180deg);
}

.attraction-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.05);
}

.attraction-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.attraction-locations {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.attraction-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1rem;
}

.attraction-card.active p {
    color: white;
}

.best-time {
    background: #2c3e50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.attraction-card.active .best-time {
    background: rgba(255,255,255,0.2);
}

.destination-details {
    display: none;
    margin-top: 2rem;
    text-align: left;
}

.attraction-card.active .destination-details {
    display: block;
}

.destination-item {
    background: rgba(255,255,255,0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.destination-header {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
}

.destination-header:hover {
    background: rgba(255,255,255,0.1);
}

.destination-content {
    display: none;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
}

.destination-item.open .destination-content {
    display: block;
}

.destination-image {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.sigiriya-bg { background-image: url('../images/sigiriya.jpg'); }
.kandy-bg { background-image: url('../images/kandy.jpg'); }
.ella-bg { background-image: url('../images/ella2.jpg'); }
.galle-bg { background-image: url('../images/galle.jpg'); }
.yala-bg { background-image: url('../images/yala.jpg'); }
.mirissa-bg { background-image: url('../images/mirissa.jpg'); }

.seasonal-beaches {
    text-align: left;
    margin-top: 1rem;
}

.beach-season {
    background: rgba(255,255,255,0.1);
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Itinerary Section */
.sample-itinerary {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
}

.sample-itinerary h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.itinerary-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.itinerary-step {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.itinerary-step:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.step-content strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    min-height: 100vh;
    padding: 60px 0 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
}

.contact .container {
    width: 100%;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

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

.submit-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 35px;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.submit-btn:hover {
    background: white;
    color: #2c3e50;
}

.contact-info {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.contact-item {
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #1a252f;
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: #1a252f;
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Destination Detail Pages */
.destination-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.destination-detail-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.destination-detail-card .destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.destination-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.destination-meta {
    display: flex;
    gap: 1.5rem;
    margin: 0 1.5rem 1rem;
    font-size: 0.9rem;
    color: #666;
}

.destination-detail-card p {
    margin: 0 1.5rem 1.5rem;
    line-height: 1.7;
    color: #555;
}

.destination-highlights {
    list-style: none;
    margin: 0 1.5rem 1.5rem;
    padding: 0;
}

.destination-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.destination-highlights li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

/* Itineraries Section */
.itineraries-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 15px;
    margin-top: 4rem;
}

.itineraries-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.itinerary-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.itinerary-tab {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #555;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.itinerary-tab:hover {
    background: #e8f4f8;
    border-color: #3498db;
    color: #2c3e50;
    transform: translateY(-2px);
}

.itinerary-tab.active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #2980b9;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.itinerary-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.itinerary-content.active {
    display: block;
}

.itinerary-content h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.itinerary-description {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.itinerary-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 0;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 182px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3498db, #2c3e50);
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 172px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: #3498db;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #3498db;
    z-index: 2;
}

.day-number {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: right;
    padding-right: 0;
}

.day-content {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.day-content strong {
    display: block;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.day-content span {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.itinerary-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    border-radius: 8px;
}

.itinerary-note p {
    margin: 0;
    color: #856404;
    line-height: 1.7;
}
